-
Notifications
You must be signed in to change notification settings - Fork 3
/
about.html
26 lines (25 loc) · 1.02 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
<!doctype html>
<html>
<head>
<title>Nick's Beef Jerky Company</title>
<link href='http://fonts.googleapis.com/css?family=Russo+One' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles.css" media="screen" />
</head>
<body>
<div class="container">
<h1>Nick's Beef Jerky business</h1>
<!-- navbar -->
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="products.html">Products</a></li>
</ul>
<!-- navbar -->
<p>We're passionate about jerky! Started in 2014, Nick's Beef Jerky company has served customers all around the world. We won't stop until everyone has access to the best beef jerky on the planet.</p>
<p>We love our customers as much as this little guy loves rice:</p>
<!-- embedded YouTube video -->
<iframe width="560" height="315" src="http://www.youtube.com/embed/18-xvIjH8T4" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>