-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·51 lines (49 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="letme.repair">
<title>Broken? Let me repair!</title>
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href='http://fonts.googleapis.com/css?family=Abril+Fatface|Open+Sans:300,400,600,700,800|Gentium+Book+Basic:400,400italic|Vollkorn:400italic,400' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Gravitas+One|Lato:100,900|Old+Standard+TT:400,400italic|PT+Serif:400|PT+Sans+Narrow:700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=PT+Sans:700|Merriweather:400,900|Playfair+Display:400,900,700italic|Oswald:700|PT+Mono' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Cardo:400,400italic' rel='stylesheet' type='text/css'>
<style>
body {
background: black;
padding: 0;
margin: 0;
}
section {
margin-top: 300px;
text-align: center;
}
h1 {
color: #fff;
font: 400 92px/84px Abril Fatface;
text-shadow: 0 0 20px red;
}
a {
font: 100 92px/1 "lato";
color: #ff7800;
text-transform: uppercase;
}
a:hover {
color: #ff0099;
}
</style>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.3/jquery.backstretch.min.js"></script>
<script>
$(function() { $.backstretch("background.jpg"); });
</script>
</head>
<body>
<section>
<h1>Broken?<br />
Let me repair!</h1>
<a href="http://xcoder.in/" target="_blank">Owner</a>
</section>
</body>
</html>