-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
71 lines (63 loc) · 1.24 KB
/
index.htm
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
<!DOCTYPE html>
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body, html {
height: 100%;
margin: 0;
font: 400 15px/1.8 "Lato", sans-serif;
color: #777;
}
.frame {
height: 100%;
background-color: #eee;
background-position: center;
background-size: cover;
animation: image 10s infinite alternate;
}
@keyframes image {
0% {
background-image: url('aboutus1.jpg');
}
100% {
background-image: url('aboutus2.jpg');
}
}
.caption {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
color: #000;
}
.caption span.border {
background-color: #111;
color: #fff;
padding: 18px;
font-size: 25px;
letter-spacing: 10px;
}
.caption span.border1 {
background-color: rgb(119, 113, 113);
color: #fff;
padding: 10px;
font-size: 12px;
letter-spacing: 3px;
}
h3 {
letter-spacing: 5px;
text-transform: uppercase;
font: 20px "Lato", sans-serif;
color: #111;
}
</style>
</head>
<body>
<div class="frame">
<div class="caption">
<span class="border">FRITZEN.IO</span><br>
<span class="border1">[email protected]</span>
</div>
</div>
</body></html>