-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocial.html
More file actions
67 lines (67 loc) · 2.57 KB
/
social.html
File metadata and controls
67 lines (67 loc) · 2.57 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Page</title>
<link rel="stylesheet" href="styles/headerandsidebar.css">
<link rel="stylesheet" href="styles/dashboard.css">
<link rel="stylesheet" href="styles/social.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:wght@100;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="header-left">
<h2>TypeRivals</h2>
</div>
<div class="header-right">
<div class="public-profile">
</div>
<img class="logout" src="icons/arrow-right-from-bracket-solid (1).svg">
</div>
</div>
<div class="flex">
<div class="sidebar">
<div class="side-bar-element" id="dashboard">
<img src="icons/house-svgrepo-com (2).svg">
<p>Dashboard</p>
</div>
<div class="side-bar-element" id="leaderboard">
<img src="icons/trophy-svgrepo-com.svg">
<p>Leaderboard</p>
</div>
<div class="side-bar-element" id="history">
<img src="icons/history-svgrepo-com (1).svg">
<p>History</p>
</div>
<div class="side-bar-element" id="blogs">
<img src="icons/book-open-svgrepo-com.svg">
<p>Blogs</p>
</div>
<div class="side-bar-element" id="social">
<img src="icons/people-svgrepo-com (2).svg">
<p>Social</p>
</div>
</div>
<div class="main-content">
<div class="progress-div">
<progress></progress>
</div>
<div class="social">
<!-- <div class="wrapper-to-center">
<div class="selection">
<div class="tab" id="AllTab">All Users</div>
<div class="tab" id="friendsTab">Friends</div>
</div>
</div> -->
</div>
</div>
</div>
</div>
<script type="module" src="scripts/firebaseinit.js"></script>
<script type="module" src="scripts/headerandsidebar.js"></script>
<script type="module" src="scripts/social.js"></script>
</body>
</html>