-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 849 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
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>New Tab</title>
<style>
@font-face
{
font-family: 'font';
src: url("./font.ttf");
}
body
{
width:100%;
height:100vh;
padding:0;
margin:0;
}
.message_container
{
display:flex;
justify-content:center;
align-items:center;
align-content:center;
flex-direction:row;
width:100%;
height:100vh;
padding:0;
margin:0;
background-size: cover;
font-size:40px;
text-align: center;
opacity:0;
transition:all 0.5s;
}
.message
{
margin:30px;
color:white;
font-family: 'font';
}
</style>
</head>
<body>
<div class="message_container">
<div class="message"></div>
</div>
<script src="jquery.js"></script>
<script src="scripts.js"></script>
</body>
</html>