-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage1.html
More file actions
37 lines (35 loc) · 1.21 KB
/
page1.html
File metadata and controls
37 lines (35 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>My Webpage</title>
</head>
<body>
<nav>
<ol class="nav">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="page1.html">Best Toppings</a>
</li>
<li class="nav-item">
<a class="nav-link" href="page2.html">Types of Pizza</a>
</li>
<li class="nav-item">
<a class="nav-link" href="page3.html">Pizza Pics</a>
</li>
</ol>
</nav>
<h1 class="px-md-2">Best Toppings</h1>
<h2 class="px-md-2">Best toppings for Pizzas, ranked:</h2>
<ol>
<li>Onions</li>
<li>Mushrooms</li>
<li>Pepporoni</li>
</ol>
</body>
</html>