-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 2.1 KB
/
index.html
File metadata and controls
74 lines (74 loc) · 2.1 KB
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
<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ecoblox - Artist Homepage</title>
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #0d0d0d;
color: white;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 20px;
}
h1 {
font-size: 4rem;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 2px;
transition: transform 0.3s ease-in-out;
}
h1:hover {
transform: scale(1.1);
}
p {
font-size: 1.5rem;
margin-bottom: 20px;
opacity: 0.8;
}
a {
color: #1DB954;
text-decoration: none;
font-size: 1.2rem;
transition: color 0.3s;
}
a:hover {
color: #17a74a;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 15px 30px;
background: linear-gradient(45deg, #1DB954, #17a74a);
color: black;
font-weight: bold;
border-radius: 30px;
text-decoration: none;
font-size: 1.2rem;
transition: transform 0.3s ease-in-out, box-shadow 0.3s;
box-shadow: 0 5px 15px rgba(29, 185, 84, 0.4);
}
.button:hover {
transform: scale(1.1);
box-shadow: 0 8px 20px rgba(29, 185, 84, 0.6);
}
</style>
</head>
<body>
<h1>Ecoblox</h1>
<p>Markus Eco</p>
<h1 href="mailto:fmaster1141@gmail.com">fmaster1141@gmail.com</h1>
<br>
<a href="https://open.spotify.com/artist/5eRIEpiHri0reA9VrA8UeS" class="button" target="_blank">Listen on Spotify</a>
<br>
<a href="songs.html" class="button">View Songs</a>
</body>
</html>