-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (111 loc) · 2.39 KB
/
index.html
File metadata and controls
111 lines (111 loc) · 2.39 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
103
104
105
106
107
108
109
110
111
<!doctype html>
<html>
<head>
<style>
body{
background-color: #3A3A3A
}
ul{
list-style-type: none;
margin:0;
padding:0;
overflow:hidden;
background-color: #010003;
position: -webkit-sticky;
}
li{
float: left;
}
li a, .dropbtn{
display: inline-block;
color: #FDFDFD;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li:last-child{
border-right:none;
}
li a:hover:not(.active){
background-color:#EC0B0F;
}
.active{
background-color:#F30718;
}
li a:hover, .dropdown:hover .dropbtn {
background-color:#F00525;
}
li.dropdown{
display: table;
}
.dropdown-content{
display: none;
text-align: left;
padding-right:0px;
position: absolute;
min-width: 150px;
box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdowncontent a{
color: black;
padding: 1px 1px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
color: antiquewhite;
background-color: #000000;
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropdown-content {
display: block;
}
div.gallery{
margin: 1px;
border: 0px;
float: left;
width: auto;
}
div.gallery:hover {
border: 1px solid #000000;
}
div.gallery img{
width: 100%;
height: 500px;
text-align:center
}
.centered{
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 10px double #FFFFFF;
font-size: 50px;
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
</style>
<meta charset="utf-8">
<title>climatehackathon.html</title>
</head>
<body>
<ul>
<li><a class="active" href="climatehackathon.html">Home</a></li>
<li><a href="#Aboutus">About us</a></li>
<li class="dropdown">
<a class="dropbtn" href="javascript:void(0)">Menu</a>
<div class="dropdown-content">
<a href="#home">covid-quiz</a>
<a href="covidquiz.html">facts</a></div></li>
<li style="float: right"><a href="interactive.html">Reach us</a>
</li></ul>
<div class="gallery">
<a target="_blank" href="https://www.worldometers.info/coronavirus/">
<img src="covidvirus.jpg" alt="covidvirus" width="600" height="400"></a>
<div class="centered">Covid-19 time</div>
<div class="bottom left">Click anywhere on this picture</div></div>
</body>
</html>