-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
48 lines (48 loc) · 2.14 KB
/
about.html
File metadata and controls
48 lines (48 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<link rel="stylesheet" href="./resources/css/style.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="row">
<div class="col">
<header>
<nav class="nav justify-content-center">
<a class="nav-link" href="./index.html">Index</a>
<a class="nav-link" href="./about.html">About</a>
</nav>
<h1>This is the About page!</h1>
</header>
<br>
<h3>
My name is Tiffany Ngo. Here are some things about me.
</h3>
<ul>
<li>
My favorite color is pink.
<img src="./resources/images/pink.png" height="100px" width="150px">
</li>
<li>
I have two cats.
<img src="./resources/images/snowBengalCat.jpg" height="200px" width="250px">
<img src="./resources/images/tuxedoCat.png" height="250px" width="200px">
</li>
<li>
My favorite Oreo flavor is Chocolate Peanut Butter Pie.
<img src="./resources/images/oreo.jpg" height="200px" width="200px">
</li>
</ul>
</div>
</div>
</div>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
</body>
</html>