-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (82 loc) · 2.61 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>NIET TECHNOCRAFTS</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link type="text/css" rel="stylesheet" href="css/bootstrap.css">
<link type="text/css" rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/animate.css">
<link type="text/css" rel="stylesheet" href="css/custom.css">
<link rel="stylesheet" href="css/normalize.css"><link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<style type="text/css">
body {
background-image:url('Video/videos.gif') !important;
background-size:100% 100%;
background-repeat: repeat-y;
background-attachment: fixed;
height:100%;
width:100%;
}
#head{
text-align: center;
animation-duration: 1s;
animation-name: pulse;
animation-iteration-count: infinite;
z-index: -1;
}
.before{
background-color:black;
z-index: 1;
}
</style>
</head>
<body>
<div class="container before">
<i class='preloader'></i>
</div>
<nav class="navbar navbar-inverse after">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">NIET TECHNOCRAFTS</a>
</div>
<div class="collapse navbar-collapse navbar-right" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">HOME</a></li>
<li><a href="event.html">REGISTER</a></li>
<li><a href="about.html">ABOUT US</a></li>
<li><a href="contact.html">CONTACT US</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="col-md-6 col-md-offset-3" align="center">
<h1 id="head" >NIET TECHNOCRAFTS</h1>
</div>
</div>
</div>
<div class="navbar navbar-inverse navbar-fixed-bottom after">
<div class="container">
<div class="nav navbar-text pull-right">
<p>Designed & Developed By: Web Development Team</p>
</div>
</div>
</div>
<script type="text/javascript">
$(".after").hide();
</script>
<script type="text/javascript">
setTimeout(function(){$(".after").show();
$(".before").hide(1000);},3000);
</script>
</body>
</html>