-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (121 loc) · 4.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/src/styles/style.css" />
<script defer src="/src/main.js"></script>
<title>Campo Santo - Firewatch</title>
</head>
<body>
<nav>
<div class="title">CAMPO SANTO</div>
<div class="menu">
<ul>
<li>FIREWATCH</li>
<li>DEVELOPMENT BLOG</li>
<li>QUARTERLY REVIEW</li>
</ul>
</div>
</nav>
<div class="page">
<div class="images">
<div class="images_layer img-1" data-speed="2"></div>
<div class="images_layer img-2" data-speed="5"></div>
<div class="images_layer img-3" data-speed="11"></div>
<div class="images_layer img-4" data-speed="16"></div>
<div class="images_layer img-5" data-speed="26"></div>
<div class="images_layer img-6" data-speed="36"></div>
<div class="images_layer img-7" data-speed="49"></div>
<div class="images_layer img-8" data-speed="69"></div>
<div class="img-9" data-speed="100"></div>
</div>
<div class="main">
<div class="container">
<div class="purchase">
<p>AVAILABLE NOW FOR $19.99</p>
</div>
<div class="method">
<ul>
<li>💻 WINDOWS MAC LINUX</li>
<li>📟NINTENDO SWITCH</li>
<li>🎮 PLAYSTATION 4</li>
<li>🎮 XBOX ONE</li>
</ul>
</div>
<div class="video">
<iframe
width="420"
height="345"
src="https://www.youtube.com/embed/cXWlgP5hZzc"
>
</iframe>
</div>
<div class="detail">
<p class="header">
Firewatch is a mystery set in the Wyoming wilderness, where your
only emotional lifeline is the person on the other end of a
handheld radio.
</p>
<div class="article">
<p class="first">
The year is 1989.<br /><br />You are a man named Henry who has
retreated from your messy life to work as a fire lookout in the
Wyoming wilderness. Perched atop a mountain, it's your job to
find smoke and keep the wilderness safe.<br /><br />An
especially hot, dry summer has everyone on edge. Your
supervisor, a woman named Delilah, is available to you
</p>
<p class="second">
at all times over a small, handheld radio—and is your only
contact with the world you've left behind.<br /><br />But when
something strange draws you out of your lookout tower and into
the world below, you'll explore a wild and unknown environment,
facing questions and making interpersonal choices that can build
or destroy the only meaningful relationship you have.
</p>
</div>
</div>
<div class="more">
<ul>
<li>SCREEN & TRAILERS</li>
<li>FIREWATCH FAQ</li>
</ul>
</div>
<div class="screen">
<img
src="https://www.firewatchgame.com/screenshots/thumbs/firewatch_01.jpg"
alt=""
/>
<img
src="https://www.firewatchgame.com/screenshots/thumbs/firewatch_02.jpg"
alt=""
/>
<img
src="https://www.firewatchgame.com/screenshots/thumbs/firewatch_03.jpg"
alt=""
/>
<img
src="https://www.firewatchgame.com/screenshots/thumbs/firewatch_04.jpg"
alt=""
/>
</div>
<div class="purchase">
<h2>"As visually striking <br />as its unique premise."</h2>
<h3>Entertainment Weekly</h3>
</div>
</div>
<footer>
<div class="">
<p>
©<span id="year">2023</span> Campo Santo, in cooperation with
Panic.
</p>
<p>Firewatch is a trademark of Campo Santo.</p>
<p>Nintendo Switch is a trademark of Nintendo.</p>
</div>
</footer>
</div>
</div>
</body>
</html>