-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 931 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
41
42
<html>
<head>
<title>Ship Via Autos</title>
<link rel="shortcut icon" href="icon.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
@font-face {
font-family: 'The Frontman';
src: url('The Frontman.woff');
}
body {
display: grid;
place-items: center;
height: 100dvh;
}
img {
display: block;
margin: auto;
max-height: calc(100vh - 15rem);
}
h1 {
font-family: 'The Frontman';
font-size: min(8vw, 5rem);
text-align: center;
margin-block-end: 0;
-webkit-text-stroke: red 1px;
transition: -webkit-text-stroke-color 0.5s ease-in-out;
}
h1:hover {
-webkit-text-stroke-color: blue;
}
</style>
</head>
<body><main>
<img src="banner.svg"/>
<h1>ship.via.autos</h1>
</main></body>
</html>