-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.48 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zero Proof Bartender</title>
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon.png">
<!-- Include Montserrat Light & Regular from Google Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap">
<style>
body, html {
height: 100%;
margin: 0;
/* You can leave Arial as fallback for everything else */
font-family: Arial, sans-serif;
background-color: #151219; /* dark gray */
color: #fefeff; /* pale, pinkish-orange */
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
padding-bottom: 50px; /* Adds spacing at the bottom */
}
img {
max-width: 80%; /* You can adjust this value */
max-height: 80vh; /* And/or this value to resize your image */
height: auto; /* Maintains the aspect ratio */
}
.logo-text {
margin-top: 10px; /* Reduces the spacing between the logo and the text */
font-size: 2em;
/* Use Montserrat Light (weight 300), fall back to sans-serif */
font-family: 'Montserrat', sans-serif;
font-weight: 300;
}
</style>
</head>
<body>
<img src="images/zpblogo.png" alt="ZPB Logo">
<div class="logo-text">info@zeroproofbartender.com</div>
</body>
</html>