-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (102 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Twilight tic-tac-toe" />
<title>Twilight tic-tac-toe</title>
<link
rel="preload"
href="./fonts/raleway-600.woff"
as="font"
crossorigin="anonymous"
/>
<link
rel="preload"
href="./fonts/raleway-800.woff"
as="font"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<script type="module" src="./src/main.js"></script>
</head>
<body>
<header>
<div class="header__wrapper">
<div>
<blockquote class="quote">
<p>- And so the lion fell in love with the lamb…</p>
<p>- What a stupid lamb!</p>
<p>- What a sick, masochistic lion.</p>
</blockquote>
<p class="quote__author">— Stephenie Meyer, <cite>Twilight</cite></p>
</div>
<div class="img__wrapper twilight-img__wrapper">
<img
class="twilight-img"
src="./img/twilight-logo.png"
alt="twilight-logo"
/>
</div>
<div class="img-sound">
<img src="./img/icon/icon-sound.png" alt="sound" />
</div>
</div>
</header>
<section class="container main-screen">
<div class="main-screen__wrapper">
<p class="main-screen_rule">
"About three things I was absolutely positive. First, Edward was a
vampire. Second, there was a part of him — and I didn't know how
dominant that part might be — that thirsted for my blood. And third, I
was unconditionally and irrevocably in love with him."
</p>
<div class="img__wrapper">
<img src="./img/bella-swan.png" alt="Character image" />
</div>
</div>
<button class="btn btn-continue">Continue</button>
</section>
<section class="hidden game-screen">
<div class="game__wrapper">
<div class="game__grid"></div>
<div class="edward__wrapper">
<div class="edward__quote">
<p>"You are like my personal brand of heroin."</p>
</div>
<div>
<img
src="./img/edward-cullen-twilight-png.png"
alt="Edward Image"
/>
</div>
</div>
</div>
</section>
<dialog class="game-over-modal">
<div class="game-over-modal__wrapper">
<div class="modal__content">
<p class="modal__title">Congrats!</p>
<div class="img__wrapper">
<img src="./img/bella-vampire.jpeg" alt="Bella Vampire Image" />
</div>
<button class="btn">Play again?</button>
</div>
</div>
</dialog>
<div class="img__wrapper">
<img
class="wolf__img"
src="./img/vecteezy_animal-wolf-silhouette_12904516_475.png"
alt="Wolf Image"
/>
</div>
<div class="img__wrapper">
<img
class="wolf__img wolf-img-1"
src="./img/vecteezy_animal-wolf-silhouette_12904516_475.png"
alt="Wolf Image"
/>
</div>
</body>
</html>