-
Notifications
You must be signed in to change notification settings - Fork 4
/
account.html
37 lines (30 loc) · 999 Bytes
/
account.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./icons/favicon.ico" type="image/x-icon">
<title>Account</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="account.css">
</head>
<body>
<section class="top-nav">
<div class="name">
The Ultimate Escape
</div>
<input id="menu-toggle" type="checkbox" />
<label class='menu-button-container' for="menu-toggle">
<div class='menu-button'></div>
</label>
<ul class="menu">
<li><a href="index.html">Homepage</a></li>
<li><a href="manga.html">Manga</a></li>
<li><a href="login.html">Sign Up</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</section>
<h2>Your Account Created Successfuly</h2>
<img src="login page pic.gif" alt="">
</body>
</html>