-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (47 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>The Witcher - Characters</title>
</head>
<body>
<div class="container">
<div class="card">
<div class="content">
<h2>Triss Merigold</h2>
<p>
"No! I will not give in and I won't be swayed! I am the "Fourteenth
of the Hill"! I am not a little frightened girl from a dark Maribor
Tower anymore..."
</p>
</div>
<img src="./triss.png" alt="" />
</div>
<div class="card">
<div class="content">
<h2>Geralt of Rivia</h2>
<p>
"...if I'm to choose between one evil and another, then I prefer not
to choose at all."
</p>
</div>
<img src="./geralt.png" alt="" />
</div>
<div class="card">
<div class="content">
<h2>Yennefer of Vengerberg</h2>
<p>
"When I created Yennefer's character I wanted Geralt to fully grow,
but then I decided to make things complicated. I created a female
character who refuses to be a fantasy stereotype. To please the
reader."
</p>
</div>
<img src="./yennefer.png" alt="" />
</div>
</div>
</body>
</html>