-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sachin Verma
committed
Aug 29, 2020
1 parent
c339ffd
commit 43edf97
Showing
2 changed files
with
122 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
body{ | ||
padding-top: 70px; | ||
} | ||
.jumbotron{ | ||
background-color: #ecf0f1; | ||
color:#2c3e50; | ||
} | ||
.navbar-inverse{ | ||
background: #3373b1; | ||
} | ||
a{ | ||
color: white; | ||
} | ||
.navbar-inverse .navbar-nav>li>a { | ||
color: white; | ||
} | ||
.navbar-brand{ | ||
color: white; | ||
} | ||
.navbar-inverse .navbar-brand { | ||
color: white; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>Image gallery</title> | ||
<!-- Latest compiled and minified CSS --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"> | ||
<link rel="stylesheet" type="text/css" href="imagegrid.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-example-navbar-collapse-1" 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 class="navbar-brand" href="#"><span class="glyphicon glyphicon-picture" aria-hidden="true"></span> PICURES</a> | ||
</div> | ||
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
<ul class="nav navbar-nav"> | ||
<li><a href="#">About</a></li> | ||
<li><a href="#">Events</a></li> | ||
<li><a href="#">Careers</a></li> | ||
<li><a href="#">Contacts</a> | ||
</li> | ||
</ul> | ||
<ul> | ||
<div class="nav navbar-nav navbar-right"> | ||
<li><a href="#">Sign Up</a></li> | ||
<li><a href="#">Login</a></li> | ||
</div> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
<div class="container"> | ||
<div class="jumbotron"> | ||
<h1><span class="glyphicon glyphicon-camera" aria-hidden="true"></span> The Image Gallery</h1> | ||
<p>A bunch of beautiful images that I didn't take</p> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1435771112039-1e5b2bcad966?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1442406964439-e46ab8eff7c4?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1439524970634-649c37a69e5c?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&w=1450&h=825&fit=crop&s=bfda9916c885869b43b70738693428d9"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src=" https://images.unsplash.com/photo-1444090542259-0af8fa96557e?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1434543177303-ef2cc7707e0d?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1436262513933-a0b06755c784?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1439396087961-98bc12c21176?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="https://images.unsplash.com/photo-1439694458393-78ecf14da7f9?dpr=2&fit=crop&fm=jpg&h=825&q=50&w=1450"> | ||
</div> | ||
</div> | ||
<div class="col-lg-4 col-sm-6"> | ||
<div class="thumbnail"> | ||
<img src="http://i.imgur.com/qK42fUu.jpg"> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" | ||
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" | ||
crossorigin="anonymous"></script> | ||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script> | ||
</body> | ||
</html> |