forked from UWFront-End-Cert/html200-adopt-a-dog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
56 lines (56 loc) · 1.73 KB
/
blog.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8" >
<link rel="stylesheet" href="styles/style.css" >
<title>Adoptadog | Seattle's Premier Dog Adoption Agency</title>
</head>
<body>
<header>
<a href="#main-content" class="skip-link">Skip to main content</a>
<div class="top-container">
<div class="top-box">
<p>
<a href="index.html"
><img
class="logo-img"
src="images/adoptadog-logo.svg"
alt="Adoptadog logo"
></a>
</p>
<p class="logotext">Seattle’s premier dog adoption agency</p>
</div>
<div class="top-box">
<p><i class="fa fa-shopping-cart fa-2x"></i>$1234.56</p>
<div class="checkout"><a href="checkout.html">Checkout</a></div>
</div>
</div>
</header>
<nav >
<p>
<a href="index.html">Home</a> /
<a href="catalogue.html">Dogs</a>
/
<a href="blog.html" class="active">Blog</a>
</p>
</nav>
<footer id="blog-footer">
<img src="images/adoptadog-logo.svg" alt="adopt a dog logo" >
<p>
Aborpos nisto inci tet aut que volupti beruptiberro to exesseque
invenienihil imaximu scideru ptistiusam consequunt
</p>
<p>
<a href="index.html">Home</a> /
<a href="catalogue.html">Dogs</a>
/
<a href="contact.html">Contact</a>
</p>
<p>
© 2018 Adoptadog, LLC | Seattle, WA
</p>
</footer>
<script type="text/javascript" charset="utf-8" src="https://code.jquery.com/jquery-3.6.3.min.js"></script>
<script type="text/javascript" src="jscripts/blog.js"></script>
</body>
</html>