-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (138 loc) · 5.21 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!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">
<title>Document</title>
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</head>
<body>
<nav id="main-menu">
<a href="#" class="tab"><strong>Aqua</strong></a>
<ul>
<li>
<a href="#Home">Home</a>
</li>
<li>
<a href="#skillPages">Skills</a>
</li>
<li>
<a href="#">Resume</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</nav>
<section class="pages">
<div id = "Home" class = "page__header">
<img class = "homePicture" src="image/Aqua.jpg" alt="Aqua">
<div class = "aqua-text">
<h2>Aqua</h2>
<p>God's Blessing on This Wonderful World!</p>
<ul>
<li>
<img class = "contact-way" src="image/facebook.png" alt="facebook">
</li>
<li>
<img class = "contact-way" src="image/ins.png" alt="instagram">
</li>
<li>
<img class = "contact-way" src="image/twitter.png" alt="twitter">
</li>
</ul>
</div>
</div>
<div class = "page-content">
<div class = "about">
<h3>About me</h3>
<p>Aqua is one of the three main deuteragonists in the KonoSuba series.
Prior to life in the Fantasy World, she was a goddess of water who guided humans to the afterlife; within,
she is worshipped by the Axis Order.
</p>
</div>
<table class="aqua-table">
<tr>
<th>Age:</th>
<td>20</td>
</tr>
<tr>
<th>Alias:</th>
<td>Goddess of Water</td>
</tr>
<tr>
<th>Occupation:</th>
<td>Arch-Priest</td>
</tr>
<tr>
<th>Email:</th>
<td>
</td>
</tr>
<tr>
<th>Phone:</th>
<td>No information</td>
</tr>
</table>
</div>
</section>
<br>
<section class = "skillPages">
<div class = "skillTitle">
<span>Skills</span>
</div>
<div class = "skill">
<ul>
<li>
<img class = "skill-picture" id = "purification" src="image/Purification.gif" alt="Purification">
<p>Purification</p>
</li>
<li>
<img class = "skill-picture" id = "nature" src="image/Nature.gif" alt="Nature's Beauty">
<p>Nature's Beauty</p>
</li>
<li>
<img class = "skill-picture" id = "godRequiem" src="image/GodRequiem.gif" alt="God Requiem">
<p>God Requiem</p>
</li>
</ul>
</div>
</section>
<div class ="p-window1">
<section class="p-window2">
<nav class="close-button">
<a href="#purification">Close</a>
</nav>
<p>As a water goddess, Aqua has the power to purify water,
from contaminated hot springs to coffee and tea, through mere contact. However,
it seems this is something Aqua has no control over as any liquid she touches becomes purified,
regardless of intent, while casting Purification simply increases the effect.</p>
</section>
</div>
<div class ="n-window1">
<section class="n-window2">
<nav class="close-button">
<a href="#nature">Close</a>
</nav>
<p>A skill that makes two fans appear on both hands and a pot of soil appear on top of your head.
Spouts of water will emerge from each fan while a flower grows in the pot that will eject blossoms once fully grown .</p>
</section>
</div>
<div class ="g-window1">
<section class="g-window2">
<nav class="close-button">
<a href="#godRequiem">Close</a>
</nav>
<p>This type of ability enables Aqua to conjure a powerful energy
that can be released by either striking the enemy with her staff or with her hands.
Like her God Blow, this ability will purify anything it comes in to contact with.</p>
</section>
</div>
<script src="./script.js"></script>
</body>
</html>