-
Notifications
You must be signed in to change notification settings - Fork 2
/
web.html
64 lines (62 loc) · 1.42 KB
/
web.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
<!DOCTYPE html>
<html>
<script type="text/javascript" src="web.js"></script>
<script type="text/javascript" src="script.js"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto|Taviraj" rel="stylesheet">
<style>
body {
background: #37474F;
background-size: 1px ,1px;
}
img
{
margin-top: 10px;
margin-left: auto;
margin-right: auto;
display: block;
width:100px;
height:100px;
}
#warning
{
padding-top: 50px;
padding-bottom:10px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
font-size: 33px;
color: white;
font-variant: small-caps;
margin-bottom: 60px;
font-family: 'Roboto|Taviraj', serif;
}
#quote {
color: white;
text-align: center;
margin-top: 110px;
margin-left: 180px;
margin-right: 180px;
font-size: 30px;
line-height: 40px;
letter-spacing: 2px;
font-variant: small-caps;
font-family: 'Roboto|Taviraj', serif;
}
#quote::selection {
background: #eee;
}
#madeby
{
color:white;
padding-bottom: 10px;
padding-right: 10px;
}
</style>
<body >
<div id="warning">Sorry! This URL can't be opened right now.<br> Please, come after <span id="war"></span> minutes.</div>
<img src="no5.gif">
<div id="quote"></div>
<div id="madeby" style="position: absolute; bottom: 5px; right:10px;"> © 2016 , Mobile Development Group , IIT Roorkee</div>
</body>
</html>