-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage3.html
65 lines (58 loc) · 1.63 KB
/
page3.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
<!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="red">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>My favorite colour is pink.</p>
<footer class="blockquote-footer">Some random <cite title="fictional">person.</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="green">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>My favorite colour is green.</p>
<footer class="blockquote-footer">Some random <cite title="fictional">person.</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="blue">
<div class="card">
<div class="card-header">
Quote
</div>
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>My favorite colour is blue.</p>
<footer class="blockquote-footer">Some random <cite title="fictional">person.</cite></footer>
</blockquote>
</div>
</div>
</div>
</body>
</html>