forked from elise-bigdevsoon/big-dev-soon-challenge-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (98 loc) · 4.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Our unique tag to identify the solution -->
<!-- <bds />-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BigDevSoon Charts challenge</title>
<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=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css"/>
</head>
<body>
<main class="navigation-container">
<header class="user-profile">
<div class="avatar-image">
<img src="assets/avatar7.jpg" width="70" height="70" alt=""/>
</div>
<div class="user-info">
<h3>Lisa Richardson</h3>
<p class="user-profession">
Environmental meteorologist
</p>
</div>
</header>
<section class="main-content">
<ul class="options-list">
<li>
<a class="list-item" href="#personal-data">
<span class="item-icon"><img src="assets/users-solid.svg" width="20" height="20" alt="personal-data-icon"></span>
<span class="item-text">Personal Data</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt=""></span>
</a>
</li>
<li>
<a class="list-item" href="#messages">
<span class="item-icon"><img src="assets/message-fill.svg" width="20" height="20" alt="messages-icon"/></span>
<span class="item-text">Messages</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
<li>
<a class="list-item" href="#notifications">
<span class="item-icon"><img src="assets/notification.svg" width="20" height="20" alt="notifications-icon"/></span>
<span class="item-text">Notifications</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
<li>
<a class="list-item" href="#location">
<span class="item-icon"><img src="assets/location.svg" width="20" height="20" alt="location-icon"/></span>
<span class="item-text">Location</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
<li class="divider">
<a class="list-item" href="#community">
<span class="item-icon"><img src="assets/users-group-solid.svg" width="20" height="20" alt="community-icon"/></span>
<span class="item-text">Community</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
<li class="start">
<a class="list-item" href="#faq">
<span class="item-icon"><img src="assets/info.svg" width="20" height="20" alt="community-icon"/></span>
<span class="item-text">FAQs</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
<li>
<a class="list-item" href="#settings">
<span class="item-icon"><img src="assets/settings.svg" width="20" height="20" alt="community-icon"/></span>
<span class="item-text">Settings</span>
<span class="chevron"><img src="assets/chevron-right.svg" width="16" height="16" alt="chevron-icon"/></span>
</a>
</li>
</ul>
</section>
<footer>
<div class="actions">
<button role="button">
<img src="assets/home.svg" width="24" height="26" alt="chome-icon"/>
</button>
<button role="button">
<img src="assets/statistic-up.svg" width="25" height="25" alt="statistics-icon"/>
</button>
<button role="button">
<img src="assets/message.svg" width="24" height="26" alt="message-icon"/>
</button>
<button class="active" role="button">
<img src="assets/user.svg" width="24" height="26" alt="user-icon"/>
</button>
</div>
</footer>
</main>
</body>
</html>