-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
102 lines (84 loc) · 3.92 KB
/
about.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
<!--
Title: Module05 Bootstrap Site AboutPage
Author: Wendy Dushanin
UNCC Student ID: 800727084
Date: February 26, 2022
Class: ITSC 3155 Software Engineering
Semester: Spring 2022
-->
<!--Assignment Description:
Implement the Figma design you have turned in. Your minimum site requirements are the same as your design requirements.
-->
<!--References:
I heavily referenced both the Bootstrap site and w3schools.com to complete this assignment.
-->
<!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>About Page</title>
<!--CSS Link copied from Bootstrap-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="/my-styles.css" />
</head>
<body>
<!--Header Start-->
<div class="container-fluid p-3 my-0 header">
<h1 class="center">Look at my Cats</h1>
</div>
<!--Header End-->
<!--Nav Bar Start-->
<div class="container-fluid p-3 my-0 bg-dark text-white">
<ul class="nav justify-content-center">
<li class>
<a class="nav-link text-white" aria-current="page" href="/index.html">Home</a>
</li>
<li class>
<a class="nav-link text-white" href="/about.html">About</a>
</li>
<li class=>
<a class="nav-link text-white" href="/contact.html">Contact</a>
</li>
</ul>
</div>
<!--Nav Bar End-->
<!--Main Content Start-->
<div class="container-fluid p-3 my-0 my-content">
<h1>About Newt & Xeno...</h1>
</div>
<!--Begining of div for picture of cats at top of page-->
<div class="container-fluid p-3 my-0 my-content">
<img src = "/images/kittens.jpg" height="350">
</div>
<!--End of Picture div-->
<div class="container-fluid p-3 my-0 my-content"> <!--Beginning of Paragraph Div-->
<p> Newt & Xeno were born on March 17, 2016 in Gastonia, North Carolina. </br>
They currently live in Charlotte, North Carolina with their humans, </br>
Maxim and Wendy Dushanin. </p>
</div><!--End of Paragraph Div-->
<div class="container-fluid p-3 my-0 my-content"> <!--Beginning of UL Title Div-->
<h3>Newt and Xeno enjoy: </h3>
</div> <!--End of UL Title Div-->
<div class="container-fluid p-3 my-0 my-content"> <!--Beginning of UL-->
<ul class="supersize-that">
<li>Watching birds</li>
<li>Long naps</li>
<!--Link to Amazon Store (External Link Requirement)-->
<li>Playing with <a href ="https://www.amazon.com/Rimobul-Assorted-Color-Sparkle-Favorite/dp/B00LJ392JC/ref=sr_1_10?keywords=cat+floof+balls&qid=1645919225&sprefix=%2Caps%2C69&sr=8-10">
Floofs</a></li>
</ul>
</div> <!--End of UL-->
<!--Main Content End-->
<!--Footer Start-->
<div class="container-fluid p-0 my-0 footer">
<p class="center">©2022 Wendy Dushanin Designs</p>
</div>
<!--Footer End-->
<!--JS Code copied from Bootstrap-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
</body>
</html>