-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (84 loc) · 2.08 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ordinals of Hope</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 70vh;
}
header {
display: block;
margin: 0 auto 0.5em;
width: 700px;
padding-top: 40px;
}
h1 {
font-weight: bold;
margin-bottom: 0.5em;
letter-spacing: .05px;
line-height: .5;
justify-content: center;
}
h2 {
font-weight: normal;
margin-bottom: 5em;
letter-spacing: 0.5px;
}
.btn {
background: linear-gradient(to bottom, #ff5f00, #ff7f00);
color: white;
font-weight: bold;
font-size: 1.2em;
padding: 15px 30px;
border: none;
border-radius: 25px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-top: 3em;
}
button:hover {
background: linear-gradient(to bottom, #ff7f00, #ff5f00);
}
button:focus {
outline: none;
}
button span {
display: inline-block;
vertical-align: middle;
}
button svg {
fill: #FFFFFF;
height: 20px;
margin-right: 10px;
width: 20px;
vertical-align: middle;
}
</style>
</head>
<body>
<header>
<img src="./logo.png" alt="Logo" class="logo">
<h1>Ordinals of Hope</h1>
<h2>Capture Your Daily Inspyration. Inscribe It On The ₿lockchain</h2>
<button id="form-button" type="button" class="btn">Inscribe Your Inspiration</button>
</header>
<script>
document.addEventListener('DOMContentLoaded', function() {
var formButton = document.getElementById('form-button');
formButton.addEventListener('click', function() {
window.location.href = 'form.html';
});
});
</script>
</body>
</html>