-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAttar.html
executable file
·68 lines (65 loc) · 1.83 KB
/
Attar.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
<!DOCTYPE html>
<html>
<head>
<title>JJ Attar</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8" />
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<meta name="keywords"
content="Nigh Coming Soon Responsive web template, Bootstrap Web Templates, Flat Web Templates, Android Compatible web template, Smartphone Compatible web template, free webdesigns for Nokia, Samsung, LG, SonyEricsson, Motorola web design" />
<script>
addEventListener("load", function () {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<link rel="stylesheet" href="css/style1.css" type="text/css" media="all" />
<link href="css/font-awesome1.css" rel="stylesheet">
<style>
#jh{
color:darkslategray;
font-weight: 800;
font-size: 3vw;
height: 7vw;
width: 60vh;
background:orange;
text-align: center;
padding-top: 1vw;
transition: .4s;
cursor: pointer;
border-radius: 30px 0 30px 0;
margin-left: 10vw;
}
#jh:hover{
background:darkslategrey;
color:orange;
transition: .4s;
font-weight: 400;
border-radius: 0 30px 0 30px;
}
@media(max-width:650px){
#jh{
width:45vw;
margin-left: 20vw;
height: 8vw;
padding-top: 1.5vh;
}
}
</style>
</head>
<body>
<section class="w3l-coming-soon-page">
<div class="coming-page-info-6">
<div class="wrapper">
<div class="coming-block">
<h1>Coming <br>Soon</h1>
<p>There will be something Very Awesome</p>
<div id="jh" onclick="window.location='index.html'">Home</div>
</div>
</div>
</div>
</section>
</body>
</html>