-
Notifications
You must be signed in to change notification settings - Fork 96
/
.startpage.html
executable file
·127 lines (122 loc) · 2.6 KB
/
.startpage.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
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
<!DOCTYPE HTML>
<!-- Startpage by Addy
https://plus.google.com/+AdhiPambudi
https://addy-dclxvi.deviantart.com
https://github.com/addy-dclxvi -->
<meta name="experiment" content="noindex">
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>My Start Page</title>
<link rel="icon" href=".startpage.png">
<style type="text/css">
a {
color:#FFFFFF;
text-decoration: none;
}
#wrap {
overflow: hidden;
margin-left: 10%;
margin-top: 4%;
font-family: "Noto Sans", Times, serif;
font-size: 28px;
text-align: center;
}
.box {
width: 30%;
padding-bottom: 22%;
color: #FFF;
position: relative;
float: left;
}
.innerContent1 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #4ec2e8;
padding-top: 24%;
}
.innerContent2 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #ef6b7b;
padding-top: 24%;
}
.innerContent3 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #f59335;
padding-top: 24%;
}
.innerContent4 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #fec7cd;
padding-top: 24%;
}
.innerContent5 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #a1d569;
padding-top: 24%;
}
.innerContent6 {
position: absolute;
left: 5%;
right: 5%;
top: 8%;
bottom: 8%;
background: #95c1c0;
padding-top: 24%;
}
</style>
</head>
<body>
<div id="wrap">
<div class="box">
<div class="innerContent1">
<a href="https://www.facebook.com">Facebook</a>
</div>
</div>
<div class="box">
<div class="innerContent2">
<a href="https://plus.google.com">Google+</a>
</div>
</div>
<div class="box">
<div class="innerContent3">
<a href="https://pornhub.com/">Github</a> <!-- Sssstttt! This is a camouflage ;) -->
</div>
</div>
<div class="box">
<div class="innerContent4">
<a href="https://www.youtube.com">YouTube</a>
</div>
</div>
<div class="box">
<div class="innerContent5">
<a href="https://deviantart.com">DeviantArt</a>
</div>
</div>
<div class="box">
<div class="innerContent6">
<a href="https://unsplash.com/">Unsplash</a>
</div>
</div>
</div>
</body>
</html>