-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 840 Bytes
/
index.html
File metadata and controls
33 lines (30 loc) · 840 Bytes
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
<html>
<style>
body, html {
height: 100%;
}
.bg {
background-image: url("dick.jpg");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.container {
display: flex;
justify-content: center;
}
.results {
font-size: 250pt;
font-weight: bolder;
color: white;
text-shadow: 4px 4px 8px black;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
</style>
<body class="bg">
<div class="container">
<h1 id="results" class="results">Yes</h1>
</div>
</body>
</html>