-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (39 loc) · 920 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>149595 is the Future</title>
<style>
body {
font-family: Bower, 'Montserrat', sans-serif;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
flex-direction: column;
}
.banner {
background-color: #051C2C;
color: white;
font-size: 96px;
font-weight: bold;
text-align: center;
padding: 100px;
width: 100%;
box-sizing: border-box;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<div class="banner">149595 is the Future!</div>
<div>
<audio controls loop>
<source src="song.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
</body>
</html>