forked from CodeYourFuture/HTML-CSS-Coursework-Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex1.html
More file actions
34 lines (32 loc) · 1.32 KB
/
index1.html
File metadata and controls
34 lines (32 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>My First Bootstrap Page</h1>
</div>
<div class="row">
<div class="col-sm-4">
...<img src="img/domonique-davenport-IyfwmOF6D14-unsplash.jpg" class="img-fluid" alt="Responsive image" width="100%" height="300">
</div>
<div class="col-sm-4">
...<img src="img/pratiksha-mohanty-SxHxyNx-6YI-unsplash.jpg" class="img-fluid" alt="Responsive image" width="100%" height="300">
</div>
<div class="col-sm-4">
...<img src="img/meritt-thomas-Ao09kk2ovB0-unsplash.jpg" class="img-fluid" alt="Responsive image" width="100%" height="300">
</div>
<div class="col-sm-4">
...<img src="img/kelvin-yup-a-niLBbZF4o-unsplash.jpg" class="img-fluid" alt="Responsive image" width="100%" height="300">
</div>
</div>
</div>
</body>
</html>