-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
97 lines (89 loc) · 3.62 KB
/
gallery.html
File metadata and controls
97 lines (89 loc) · 3.62 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>Image 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 rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="gallery.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-nav-demo" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand"><span class="glyphicon glyphicon-picture"></span> IMGS</a>
</div>
<div class="collapse navbar-collapse" id="bs-nav-demo">
<ul class="nav navbar-nav">
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Sign up</a></li>
<li><a href="#">Login</a></li>
</div>
</ul>
</div>
</nav>
<div class="container">
<div class="jumbotron">
<h1><i class="fa fa-camera-retro" aria-hidden="true"></i> Image Gallery</h1>
<p>A bunch of beutiful images</p>
</div>
<div class="row">
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/9idqIGrLuTE"><img src="https://source.unsplash.com/9idqIGrLuTE"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/_7xYZOvN5TQ"><img src="https://source.unsplash.com/_7xYZOvN5TQ"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/cPF2nlWcMY4"><img src="https://source.unsplash.com/cPF2nlWcMY4"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/1AWGNukP5p8"><img src="https://source.unsplash.com/1AWGNukP5p8"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/Volo9FYUAzU"><img src="https://source.unsplash.com/Volo9FYUAzU"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/HjTd4GUoyJs"><img src="https://source.unsplash.com/HjTd4GUoyJs"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/1SAnrIxw5OY"><img src="https://source.unsplash.com/1SAnrIxw5OY"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/QIK9fG4mBmc"><img src="https://source.unsplash.com/QIK9fG4mBmc"></a>
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class ="thumbnail">
<a href="https://source.unsplash.com/ZoySqhrFoK4"><img src="https://source.unsplash.com/ZoySqhrFoK4"></a>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>