-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>Don Clark - Demo Area</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: sans-serif;
text-align: center;
background: linear-gradient(180deg, #222222 0%, #000000 100%);
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0 auto;
}
.button {
width: 200px;
height: 50px;
border-radius: 50px;
background: linear-gradient(to right, #ff0000 0%, #ff4d4d 100%);
box-shadow: 0 5px 10px rgba(0, 128, 255, 0.5);
color: #262626;
font-size: 16px;
font-weight: regular;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
margin: 20px;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
}
.button:hover {
background: linear-gradient(to right, #ff4d4d 0%, #ff0000 100%);
transform: scale(1.1);
}
@media (max-width: 768px) {
.button {
width: 150px;
height: 40px;
}
}
</style>
</head>
<body>
<div class="container">
<button class="button" onclick="window.location.href='https://cransono.github.io/daniel.html'">Daniel Electrician</button>
<button class="button" onclick="window.location.href='https://cransono.github.io/2023santa.html'">2023 Santa Invite</button>
<button class="button" onclick="window.location.href='https://cransono.github.io/customized_wim_hof.html'">Custom Wim Hof</button>
<button class="button" onclick="window.location.href='https://cransono.github.io/sportssite/index.html'">Sports Site</button>
</div>
</body>
</html>