-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 969 Bytes
/
index.html
File metadata and controls
47 lines (43 loc) · 969 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css"/>
</head>
<body onload="myFunction()">
<div id="loading" >
</div>
<header>
<nav>
<div class="logo">
<h1 class="animated infinite heartBeat">Mera Bharat</h1>
</div>
<div class="menu">
<a href="#">Home</a>
<a href="#">Gallery</a>
<a href="#">About</a>
<a href="#">Contact</a>
</div>
</nav>
<main>
<section>
<h3>Welcome To India
</h3>
<h1>Do Come & Visit<span class="change_content"> </span>
</h1>
<p>"India Once Is Not Enough"</p>
<a href="#" class="btn1">Learn More</a>
<a href="#" class="btn2">SignUp Here</a>
</section>
</main>
</header>
<script>
var preloader=document.getElementById('loading');
function myFunction()
{
preloader.style.display='none';
}
</script>
</body>
</html>