-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
148 lines (123 loc) · 2.82 KB
/
index.html
File metadata and controls
148 lines (123 loc) · 2.82 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Magadeth</title>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="/m_fav.ico">
<style>
*{
padding: 0;
margin: 0;
}
body {
background-color:#00FFFF;
}
.logo {
max-width:598px;
padding:5%;
padding-top:80px;
}
.logo img {
width:100%;
height:auto;
}
.top {
width:100%;
background-color:#231F20;
min-height:300px;
padding-bottom:50px;
}
.portfolio {
background-color:transparent;
-moz-border-radius:40px;
-webkit-border-radius:40px;
border-radius:40px;
border:2px dotted#FF00FF;
display:block;
color:#FFF;
font-family:'Montserrat' sans-serif;
letter-spacing: 2px;
font-size:16px;
font-weight:bold;
max-width:200px;
padding:10px 5px;
text-decoration:none;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
transition: all .3s ease-out;
margin-top:30px;
}
.portfolio:hover {
-moz-border-radius:0px;
-webkit-border-radius:0px;
border-radius:0px;
border:2px solid #FF00FF;
color: #FF00FF;
}
.portfolio:active {
position:relative;
top:1px;
color:#FFF;
}
.bottom {
background:url(/assets/images/drip.svg) center top repeat-x #FFF;
display: block;
font-family:'Montserrat' sans-serif;
font-size:14px;
letter-spacing:1px;
padding-bottom:25px;
}
.bottom img {
padding-top: 120px;
height: auto;
float: center;
max-width:100%;
}
a {
color: #231F20;
font-family:'Montserrat' sans-serif;
font-size: 20px;
margin: auto;
letter-spacing:2px;
}
.bottom a:link {text-decoration:none;}
.bottom a:visited {text-decoration:none;}
.bottom a:hover {
text-decoration:none;
background-color:#00FFFF;;
padding-left:20px;
padding-right:20px;
padding-top:1px;
padding-bottom:1px;
-moz-border-radius:40px;
-webkit-border-radius:40px;
border-radius:40px;}
.bottom a:active {text-decoration:none;}
footer {
width: 100%;
padding-top:10px;
padding-bottom:10px;
}
</style>
</head>
<body>
<center>
<div class="top">
<div class="logo">
<img src="/assets/images/magadeth.svg"/>
</div>
<MARQUEE style="background-color:; color:FF22FF; font-size:16pt; font-family:'Montserrat' sans-serif; width:500px; height:50px; " direction="left" behavior="scroll" scrollamount="5" > THE NET IS VAST AND INFINITE </MARQUEE>
<a href="http://www.magadeth.com/portfolio" class="portfolio" target="_blank">INTO THE VOID</a>
</div>
<div class="bottom">
<img src="/assets/images/lightning.gif"/>
<p>LET'S MELT FACES<br>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<audio autoplay>
<source src="/assets/audio/cougar.wav" type="audio/wav">
</audio>
<footer></footer></center>
</body>
</html>