-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (37 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
38 lines (37 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>My Bio Page</title>
<link href="bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div id="bio" class="col-12 col-lg-6 text-center">
<hi>Desire</hi>
<img src="photo.jpg" class="img-fluid">
</div>
<div id="more" class="col-12 col-lg-6">
<h2>Favorite Music Artists</h2>
<ul>
<li>Davido</li>
<li>Wizkid</li>
<li>Burna Boy</li>
<li>Travis Scott</li>
<li>King Von</li>
</ul>
<h2>Favorite Films</h2>
<ol>
<li>Game of Thrones</li>
<li>Suits</li>
<li>How to Get Away with Murder</li>
<li>Breaking Bad</li>
<li>House of the Dragon</li>
</ol>
<a href="https://www.meta.com/user/12" class="btn btn-primary">My Meta Profile</a>
</div>
</div>
</div>
<script src="bootstrap.bundle.min.js"></script>
</body>
</html>