forked from BenjaminFowler/CS50
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
105 lines (96 loc) · 2.4 KB
/
page2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
<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">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="customNav">
<ul>
<li><a href="page4.html">Page 4</a></li>
<li><a href="page3.html">Page 3</a></li>
<li><a href="page2.html">Page 2</a></li>
<li><a href="page1.html">Page 1</a></li>
<li id="Home"><a href="index.html">Home</a></li>
</ul>
</div>
<div class="pageIntro">
<h1> Tallest Mountains In The World </h1>
</div>
<div id="page2">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Name</th>
<th scope="col">Height (M)</th>
<th scope="col">Location</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mount Everest</td>
<td>8,848</td>
<td>Nepal / China</td>
</tr>
<tr>
<th scope="row">2</th>
<td>K2</td>
<td>8,611</td>
<td>Pakistan / China</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Kangchenjunga</td>
<td>8,586</td>
<td>Nepal / India</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Lhotse</td>
<td>8,516</td>
<td>Nepal / China</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Makalu</td>
<td>8,485</td>
<td>Nepal / China</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Cho Oyu</td>
<td>8,188</td>
<td>Nepal / China</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Dhaulagiri </td>
<td>8,167</td>
<td>Nepal</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Manaslu</td>
<td>8,156</td>
<td>Nepal</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Nanga Parbat</td>
<td>8,126</td>
<td>Pakistan</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Annapurna </td>
<td>8,091</td>
<td>Nepal</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>