-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (57 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<title>PHOTO GALLERY</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime:wght@700&family=Lato:wght@900&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="LandingPage.css">
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand"><span class="glyphicon glyphicon-picture" aria-hidden="true"></span> PhotoGallery
</a class="navbar-brand">
</div class="navbar-header">
<ul class="nav navbar-nav">
<li>
<a href="AboutCreator.html">About Creator
</a>
</li>
<li class="active">
<a href="index.html">Home
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="SignUp.html">Sign-Up
</a>
</li>
<li>
<a href="LogIn.html">Log-In
</a>
</li>
<li>
<a href="ContactUs.html">Contact Us
</a>
</li>
</ul>
</div>
</nav class="navbar navbar-default">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div id="content">
<h1>PHOTO GALLERY</h1>
<h3>Here you can find astonishing pictures clicked by Rounak Hazra</h3>
<a href="PhotoGallery.html">
<button class="btn btn-default btn-lg">Get Started</button>
</a>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>