-
Notifications
You must be signed in to change notification settings - Fork 0
/
bootstrap.html
31 lines (31 loc) · 1.35 KB
/
bootstrap.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
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Practice</title>
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1>Let us Practice Bootstrap</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean fermentum eros vitae vulputate tincidunt.
Integer ut diam posuere, sodales magna at, commodo ligula.
Proin finibus lorem et mauris dictum, at commodo dui consectetur.
Nam dictum sapien sit amet ante tincidunt feugiat.
Pellentesque tempus ante a orci venenatis mattis.</p>
<p>
<ul>
<li>jump</li>
<li>walk</li>
<li>crawl</li>
<li>sprint</li>
</ul>
</p>
</div>
<div class="container">
<img src="images/king_martin_luther.jpg" alt="Dr. Martin Luther King">
<p>This man right here was one of the best in public speaking who has inspired many to date.</p>
</div>
</body>
</html>