forked from AdaGold/book-review-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
54 lines (47 loc) · 2.02 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Contact Page</title>
<link href="styles/style.css" rel="stylesheet">
<link href="styles/contact.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Grape+Nuts&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Contact Page</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="eloquent-ruby.html">Book Review: Eloquent Ruby</a></li>
<li><a href="polished-ruby-programming.html">Book Review: <span class="book-title">Polished Ruby Programming</span></a></li>
<li><a href="contact.html">Contact Page</a></li>
</ul>
</nav>
<main>
<section>
<h2>We’d Love to Hear from You!</h2>
<img src="images/site-maintainer.png" alt="Site Maintainer" width="150px">
<p>Any feedback or questions you have about the site are welcome! You can reach out by email, Twitter, or Facebook. I’d love to connect with you!</p>
<h3>Contact Methods</h3>
<ul>
<li>
Email: <a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<img src="images/logo-twitter.png" alt="Twitter Icon" width="24px">
Twitter: <a href="https://twitter.com/sarahsbookreviews">@sarahsbookreviews</a>
</li>
<li>
<img src="images/logo-facebook.png" alt="Facebook Icon" width="24px">
Facebook: <a href="https://facebook.com/sarahsbookreviews">Sarah's Book Reviews</a>
</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Sarah Koch</p>
</footer>
</body>
</html>