-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnavbar.inc.php
43 lines (38 loc) · 1.87 KB
/
navbar.inc.php
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/navbar.css">
</head>
<body>
<div id="overlay">
<div class="overlay_contents">
<img src="assets/logo.png" alt="logo" class="overlay_logo">
<p class="overlay_text">Unfortunately, Epicards is not yet fully optimised for this device. <br><br> Please use your smartphone instead.</p>
<div class="overlay_icon">
<img src="assets/monitor.svg" alt="monitor icon" class="monitor_icon">
<img src="assets/smartphone.svg" alt="monitor icon" class="mobile_icon">
</div>
</div>
</div>
<div class="bar_position">
<div class="bttm_navbar ">
<div class="nav_item active">
<a href="index.php"> <img src="assets/archive_icon.svg" alt="archive icon" class="nav_icons archive_icon"></a><span class="nav_text collection_text">Collection</span>
</div>
<div class="nav_item">
<a href="trade_sell.php"><img src="assets/trade_sell_icon.svg" alt="archive icon" class="nav_icons trade_sell_icon"></a><span class="nav_text trade_sell_text">Community</span>
</div>
<div class="nav_item">
<a href="chat.php"> <img src="assets/chat_icon.svg" alt="archive icon" class="nav_icons chat_icon"></a><span class="nav_text chat_text">Chat</span>
</div>
<div class="nav_item">
<a href="profile.php"> <img src="assets/profile_icon.svg" alt="archive icon" class="nav_icons profile_icon"></a><span class="nav_text profile_text">Profile</span>
</div>
</div>
</div>
</body>
</html>