-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (62 loc) · 1.54 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chada T. Holmes</title>
<style>
body {
background-color: black ;
color: aliceblue;
font-family: Arial, Helvetica, sans-serif;
}
header {
display: flex;
justify-content: center;
}
main {
display: flex;
flex-direction: column;
align-items: center;
}
img {
width: 100%;
height: auto;
}
.site-title {
text-transform: uppercase;
}
.heroin {
max-width: 60vw;
}
a {
color: aliceblue;
}
nav {
padding: 3em;
display: flex;
flex-direction: column-reverse;
align-items: center;
}
nav a {
padding: 1em;
}
.heroin img {
border-radius: 20px;
}
</style>
</head>
<body>
<header>
<h1 class="site-title">chanda t. holmes </h1>
</header>
<main>
<div class="heroin"><img src="/images/chanda-hero.webp" alt=""></div>
<nav>
<a href="mailto:booking@chandatholmes.com">booking@chandatholmes.com</a>
<a href="https://chandaandthepassengers.com">band</a>
<a href="https://www.instagram.com/chandatholmes/">instagram</a>
</nav>
</main>
</body>
</html>