-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
30 lines (30 loc) · 1.17 KB
/
profile.html
File metadata and controls
30 lines (30 loc) · 1.17 KB
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
<!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="./assets/profile.css" />
<link href="link" rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet" />
<link rel="icon" href="./assets/fox.svg" type="image/x-icon" />
<script src="https://kit.fontawesome.com/4ecf49da3e.js" crossorigin="anonymous"></script>
<title>The Fox Blog</title>
</head>
<body>
<header>
<b>The Fox blog</b>
</header>
<nav>
<h4 class="welcome"></h4>
<p><button class="account-btn">Account data</button></p>
<p><button class="my-posts-btn">My posts</button></p>
<p><button class="add-btn">Add, vote, browse</button></p>
<p><button class="logout-btn">Log out</button></p>
</nav>
<div class="main">
<div class="img-holder"><img src="./assets/fox.svg" alt="Fox" /></div>
</div>
<script src="./Frontend/bundleProfile.js"></script>
</body>
</html>