-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (39 loc) · 1.31 KB
/
index.html
File metadata and controls
39 lines (39 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Virus Spread</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="icon" type="image/png" href="bacteria.png" />
<script src="http://code.jquery.com/jquery-2.1.3.min.js " type="text/javascript"></script>
<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script>
<script src="circle.js" type="text/javascript"></script>
<style>
html,body {
width: 100%; height: 100%; padding: 0; margin: 0;
}
#map {
width: 100%; height: 100%; padding: 0;
position:fixed; z-index:9999;
}
.navbar {width: 100%; height: 100%;}
#rating {color: #FDFAFA;}
</style>
</head>
<body>
<h2 style="float: right;
z-index: 99999;
position: relative;
margin-right: 1%;
background-color: rgba(170, 203, 217, 1);
padding: 1%;
border-radius: 1%;
color: rgb(62, 84, 57);">Virus Spread</h2>
<div id="map"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>