-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (103 loc) · 3.24 KB
/
Copy pathindex.html
File metadata and controls
124 lines (103 loc) · 3.24 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<html>
<head>
<style>
a.badge {
margin-top: 1em;
justify-content: center;
width: 50%;
}
a.button {
margin-top: 1em;
width: 12%;
height: auto;
}
body {
background-image: linear-gradient(rgb(80, 80, 80), rgb(40, 40, 40));
margin: 0;
}
div {
align-items: center;
display: flex;
justify-content: center;
margin-top: 1em;
}
div.column {
flex: 1;
flex-direction: column;
margin: 0
}
div.columns {
display: flex;
margin: 0;
}
div.gutter {
width: 20%;
}
div.socials {
display: flex;
justify-content: space-around;
margin-bottom: 1em;
margin-top: 1em;
width: 75%;
}
img.badge {
width: 100%;
height: auto;
}
img.banner {
margin-bottom: 2em;
max-width: 100%;
max-height: 100%;
}
img.button {
width: 100%;
height: auto;
}
p.heading {
color: rgb(205, 205, 205);
font-family: sans-serif;
text-transform: uppercase;
}
</style>
<title>
Suges.com
</title>
</head>
<body>
<div class="columns">
<div class="gutter"></div>
<div class="column">
<img class="banner" src="banner.png" alt="Suges.com" />
<p class="heading">Latest</p>
<a class="badge" href="https://www.youtube.com/watch?v=-5JCtjqN0-o&list=RD-5JCtjqN0-o" style="display: inline-block; padding-bottom: 12px;">
<img class="badge" src="latest.png" alt="My latest production" />
</a>
<p class="heading">Everything else</p>
<a class="badge" href="https://music.apple.com/artist/suges/422559022?itscg=30200&itsct=music_box_badge&ls=1&app=music&mttnsubad=422559022" style="display: inline-block;">
<img class="badge" src="https://toolbox.marketingtools.apple.com/api/v2/badges/listen-on-apple-music/badge/en-us" alt="Listen on Apple Music" />
</a>
<a class="badge" href="https://open.spotify.com/artist/3K6B39NLyTjWLImzaT47Gq?si=drHBGCh0S7K4W8KHGbpDlw" style="display: inline-block;">
<img class="badge" src="spotify.png" alt="Listen on Spotify" />
</a>
<a class="badge" href="https://suges.bandcamp.com">
<img class="badge" src="bandcamp.png" alt="Listen/buy on Bandcamp" />
</a>
<a class="badge" href="https://www.traxsource.com/artist/1516/suges">
<img class="badge" src="traxsource.png" alt="Buy on Traxsource" />
</a>
<a class="badge" href="https://www.beatport.com/artist/suges/18622">
<img class="badge" src="beatport.png" alt="Buy on Beatport" />
</a>
<div class="socials">
<a class="button" href="https://www.facebook.com/suges">
<img class="button" src="facebook.png" alt="Follow on Facebook" />
</a>
<a class="button" href="http://instagram.com/suggiesuges">
<img class="button" src="instagram.png" alt="Follow on Instagram" />
</a>
</div>
</div>
<div class="gutter"></div>
</div>
</body>
</html>