-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (100 loc) · 2.79 KB
/
index.html
File metadata and controls
102 lines (100 loc) · 2.79 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
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
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./CSS/main.css">
<link rel="stylesheet" href="./CSS/mobile.css">
<title>Web Technologies</title>
</head>
<body>
<!-- CONTAINER -->
<div class="container">
<!-- HEADER -->
<div class="header"></div>
<div class="content">
<!-- SIDEBAR -->
<div class="side-bar">
<!-- SIDEBAR lOGO -->
<div class="logo-con">
<img src="./icons/blue-logo-flame.svg" alt="butterfly-logo">
</div>
<!-- SIDEBAR LIST -->
<ul>
<li>
<a href="#">
<img src="./icons/gauge-dashboard.png" alt="daashboard">
<span>Dashboard</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/building-modern.png">
<span>Organization</span>
</a>
</li>
<li>
<a href="#locations" class="active">
<img src="./icons/house.png">
<span>Locations</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/human-resources-hierarchy.png">
<span>Departments</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/tablet.png">
<span>Devices</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/team-exchange-chat.png">
<span>Visitors</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/credit-card.png">
<span>Billing</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/single-neutral.png">
<span>Profile</span>
</a>
</li>
<li>
<a href="#">
<img src="./icons/logout.png">
<span>Logout</span>
</a>
</li>
</ul>
</div>
<!-- MAIN-CONTENT -->
<div class="main-content-con" id="locations">
<div class="main-content">
<!-- MAIN CONTENT IMAGE CONTAINER -->
<div class="img-con">
<img src="./icons/house.png" alt="house">
</div>
<!-- MAIN CONTENT TEXT CONTAINER -->
<div class="text-con">
<h5>Add Locations</h5>
<p id="text">Locations are where you receive visitors</p>
</div>
<button class="btn" id="btn" onclick="result()">Add</button>
<div id="display" ></div>
</div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>