-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.html
More file actions
38 lines (35 loc) · 1.17 KB
/
Copy pathmain.html
File metadata and controls
38 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Static Map with Markers</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<div>
<div class="map-container">
<img src="img/devnetcreate-map.png">
<div class="marker-container" style="top: 398px; left: 819px;">
<div class="marker-inner">
<div class="count-circle High" style="width: 120px; height: 120px;"></div>
<div class="inner-circle"></div>
<div class="info-card" style="position: absolute;">
<div>
<span>Location</span>
<span>Workshop 1</span>
</div>
<div>
<span>IP Address</span>
<span>http://192.168.1.34/</span>
</div>
<div>
<span>People Count</span>
<span>10</span>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>