-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathachievements.html
More file actions
37 lines (37 loc) · 1.5 KB
/
achievements.html
File metadata and controls
37 lines (37 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashboard</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel ="stylesheet" type = "text/css" href="style.css">
</head>
<body>
<h1>
Welcome! Start your journey!
</h1>
<nav class = "nav">
<a href = "#" class="nav-link">
<i class="material-icons nav-icon"><i class="fa fa-map-pin" aria-hidden="true"></i></i>
<span class = "nav-text">Dashboard</span>
</a>
<a href = "chatbot.html" class="nav-link">
<i class="material-icons nav-icon"><i class="fa fa-search" aria-hidden="true"></i></i>
<span class = "nav-text">Chatbot</span>
</a>
<a href = "scanner.html" class="nav-link">
<i class="material-icons nav-icon"><i class="fa fa-qrcode" aria-hidden="true"></i></i>
<span class = "nav-text">Scanner</span>
</a>
<a href = "achievements.html" class="nav-link">
<i class="material-icons nav-icon"><i class="fa fa-star" aria-hidden="true"></i></i>
<span class = "nav-text">Achievements</span>
</a>
<a href = "about us.html" class="nav-link">
<i class="material-icons nav-icon"><i class="fas fa-person-dolly"></i></i>
<span class = "nav-text">About Us</span>
</a>
</nav>
</body>
</html>