-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
130 lines (119 loc) · 5.52 KB
/
contact.html
File metadata and controls
130 lines (119 loc) · 5.52 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - VANNA News Network</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Reuse header/nav from index.html -->
<div class="top-bar">
<!-- Same as index.html -->
</div>
<header class="main-header">
<!-- Same as index.html -->
</header>
<nav class="main-nav">
<!-- Same as index.html -->
</nav>
<main class="container contact-page">
<h1>Contact Vanna News Network</h1>
<div class="contact-container">
<section class="contact-form">
<h2>Send Us a Message</h2>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<select id="subject">
<option value="general">General Inquiry</option>
<option value="news-tip">News Tip</option>
<option value="correction">Correction</option>
<option value="advertising">Advertising</option>
<option value="subscription">Subscription Issue</option>
</select>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" rows="6" required></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</section>
<section class="contact-info">
<h2>Other Ways to Reach Us</h2>
<div class="info-item">
<i class="fas fa-map-marker-alt"></i>
<h3>Headquarters</h3>
<p>123 News Plaza<br>New York, NY 10001<br>United States</p>
</div>
<div class="info-item">
<i class="fas fa-phone"></i>
<h3>Phone</h3>
<p>+1 (212) 555-1234</p>
<p>24/7 News Tip Line: +1 (800) 555-NEWS</p>
</div>
<div class="info-item">
<i class="fas fa-envelope"></i>
<h3>Email</h3>
<p>General Inquiries: <a href="mailto:info@vannanews.com">info@vannanews.com</a></p>
<p>News Tips: <a href="mailto:tips@vannanews.com">tips@vannanews.com</a></p>
</div>
<div class="info-item">
<i class="fas fa-clock"></i>
<h3>Office Hours</h3>
<p>Monday-Friday: 9:00 AM - 6:00 PM EST</p>
<p>Weekends: Closed</p>
</div>
</section>
</div>
<section class="map-section">
<h2>Find Us</h2>
<div class="map-container">
<!-- Embed Google Map -->
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215256018102!2d-73.98784492423948!3d40.74844097138934!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259a9b3117469%3A0xd134e199a405a163!2sEmpire%20State%20Building!5e0!3m2!1sen!2sus!4v1629999999999!5m2!1sen!2sus" width="100%" height="450" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</section>
<section class="departments">
<h2>Contact Specific Departments</h2>
<div class="department-grid">
<div class="department">
<h3>Editorial</h3>
<p><a href="mailto:editorial@vannanews.com">editorial@vannanews.com</a></p>
<p>+1 (212) 555-1000</p>
</div>
<div class="department">
<h3>Advertising</h3>
<p><a href="mailto:ads@vannanews.com">ads@vannanews.com</a></p>
<p>+1 (212) 555-2000</p>
</div>
<div class="department">
<h3>Subscriptions</h3>
<p><a href="mailto:subscribe@vannanews.com">subscribe@vannanews.com</a></p>
<p>+1 (212) 555-3000</p>
</div>
<div class="department">
<h3>Press Inquiries</h3>
<p><a href="mailto:press@vannanews.com">press@vannanews.com</a></p>
<p>+1 (212) 555-4000</p>
</div>
</div>
</section>
</main>
<!-- Reuse footer from index.html -->
<footer class="main-footer">
<!-- Same as index.html -->
</footer>
<script src="js/main.js"></script>
</body>
</html>