-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (44 loc) · 971 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
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Steve Price's Site</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
text-align: center;
}
h1 {
font-size: 30px;
margin-bottom: 10px;
}
p {
font-size: 18px;
margin-bottom: 20px;
}
.zoom-button {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
border-radius: 4px;
background-color: #4CAF50;
color: #fff;
transition: transform 0.3s;
text-decoration: none;
}
.zoom-button:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<h1>Steve Price's Site</h1>
<p>This site is made with the help of ChatGPT.</p>
<a class="zoom-button" href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" target="_blank">Click Me</a>
</body>
</html>