forked from hansjny/Natural-Nerd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 808 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
<html>
<head>
<script src="jquery-3.1.1.min.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<style>
body {
background-image: url('NNSubCounter.jpg');
background-size:100% 100%;
font-family: 'Roboto', sans-serif;
}
.YT {
position:absolute;
left:50%;
transform: translate(-50%, 0);
top: 43%;
font-size:110px;
}
.FB {
position:absolute;
left:17%;
transform: translate(-50%, 0);
top: 74%;
font-size:70px;
}
.TW {
position:absolute;
left:80%;
transform: translate(-50%, 0);
top: 74%;
font-size:70px;
}
</style>
</head>
<body>
<div class="YT">10000</div>
<div class="FB">130</div>
<div class="TW">0</div>
</body>
<script>
</html>