-
Notifications
You must be signed in to change notification settings - Fork 1
/
Profile.html
43 lines (36 loc) · 1.21 KB
/
Profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Page</title>
<link rel="stylesheet" href="Profile.css">
<link rel="shortcut icon" href="images/codezero-high-resolution-logo-white.png" type="image/x-icon">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="HomePage.css">
</head>
<body>
<h1 id="ProfileTitle">Profile Page</h1>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Categories.html">Categories</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Mangas.html">Mangas</a></li>
<li><a href="Profile.html">Profile</a></li>
<li><a href="https://discord.gg/7wtqV4kq4r">Developer Community</a></li>
</ul>
</nav>
<hr>
<div class="profile_info">
<div>
<img src="" alt="Profile Picture">
<p>Name:</p>
<p>*Name in Database*</p>
<br>
<p>UserID:</p>
<p>*ID of User in Database*</p>
</div>
</div>
</body>
</html>