-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (38 loc) · 1022 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
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<title>SPARKD</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
html, body{
height: 100%;
margin: 0;
padding: 0;
font-family: Sans-Serif;
}
div {
width: 100%;
height: 100%;
background: url('/assets/bg.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h1{
padding: 50px 50px 0 0;
font-size: 65px;
text-align: right;
color: #fff;
margin: 0;
}
</style>
</head>
<body>
<div>
<h1>SPARKD <i class="fa fa-fire"></i></h1>
</div>
</body>
</html>