-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsiteExample.html
More file actions
38 lines (35 loc) · 1.09 KB
/
websiteExample.html
File metadata and controls
38 lines (35 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<!--
Author: Kylie Drawdy
Date: 10/21/2024
-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Manufacturing Company</title>
<link rel="stylesheet" href="styles/styles.css" />
</head>
<body>
<header>
<img src="images/BMO_image.jpg" alt="Image of BMO">
<h1>Drawdy Manufacturing Company</h1>
</header>
<!-- Navigation Menu -->
<nav>
<a href="websiteExample.html">Home</a>
<a href="contactus.html">Contact Us</a>
<a href="productquote.html">Product Quote</a>
<a href="productinfo.html">Product Info</a>
</nav>
<!-- Main Content Area -->
<main>
<h2>Welcome to Drawdy Manufacturing</h2>
<p>We are dedicated to providing high-quality products to meet your needs. Explore our site to learn more about our services, request a product quote, or get in touch with us.</p>
</main>
<!-- Footer -->
<footer>
<p>© 2024 XYZ Manufacturing Company. All rights reserved.</p>
</footer>
</body>
</html>