-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
59 lines (48 loc) · 2.11 KB
/
contact.html
File metadata and controls
59 lines (48 loc) · 2.11 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact BreadCorp Insurance</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="breadlogo.png" alt="BreadCorp Insurance Logo" style="height: 50px; margin-right: 10px;">
<h1 style="display: inline;">BreadCorp Insurance</h1>
<p>Providing safety and security for your Minecraft adventures!</p>
</header>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="plans.html">Our Plans</a>
<a href="contact.html">Contact</a>
</nav>
<section>
<h2>Contact Us</h2>
<p>Got questions about our DYDB plans, or just want to share a funny death story? We're all ears!</p>
<div class="form-container">
<form action="#" method="POST">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="Discord">Discord (Optional):</label><br>
<input type="Discord" id="Discord" name="Discord"><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" required></textarea><br><br>
<input type="submit" value="Send Message">
</form>
</div>
<div class="contact-info">
<h3>Other Ways to Reach Us:</h3>
<p><strong>Phone (for emergency loot recovery):</strong> 555-123-LOOT (lol, not real but you can call it if you need a laugh!)</p>
<p><strong>Discord:</strong> <a href="" target="_blank">BreadNZ</a> (Feel free to ping me anytime!)</p>
<h3>Visit Our Shop:</h3>
<p><strong>Shop Coordinates:</strong> [TO BE CREATED! COMING WITHING 24 HOURS]</p>
<p><i>Come on down to our Minecraft shop and grab your DYDBs! We're located at the heart of the server, ready to protect your loot!</i></p>
</div>
</section>
<footer>
<p>© 2024 BreadCorp Insurance. All rights reserved.</p>
</footer>
</body>
</html>