-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
128 lines (118 loc) · 5.96 KB
/
contact.html
File metadata and controls
128 lines (118 loc) · 5.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Contact form - Get in touch with me">
<meta name="keywords" content="contact, form, message, get in touch">
<meta name="author" content="Your Name">
<title>Contact Me | Portfolio</title>
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<header>
<nav class="main-nav">
<div class="logo">
<h1>Portfolio</h1>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
<li><a href="survey.html">Survey</a></li>
</ul>
<button id="theme-toggle" class="theme-toggle">
<i class="fas fa-moon"></i>
</button>
</nav>
</header>
<main>
<section class="contact-section">
<div class="container">
<!-- <div class="contact-info">
<h3>Contact Information</h3>
<ul class="contact-details">
<li>
<i class="fas fa-envelope"></i>
<a href="mailto:your.email@example.com">your.email@example.com</a>
</li>
<li>
<i class="fas fa-phone"></i>
<a href="tel:+1234567890">+1 (234) 567-890</a>
</li>
<li>
<i class="fas fa-map-marker-alt"></i>
<span>123 Main Street, City, Country</span>
</li>
</ul>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
<div class="map-container">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d387193.3059191052!2d-74.25986432971653!3d40.69714941932609!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2s!4v1645555555555!5m2!1sen!2s"
width="100%"
height="300"
style="border:0;"
allowfullscreen=""
loading="lazy">
</iframe>
</div>
</div>-->
<div class="contact-form">
<form id="contact-form" novalidate>
<div class="form-group">
<label for="name">Name *</label>
<input type="text" id="name" name="name" required>
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" id="email" name="email" required>
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="tel" id="phone" name="phone">
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="subject">Subject *</label>
<input type="text" id="subject" name="subject" required>
<div class="error-message"></div>
</div>
<div class="form-group">
<label for="message">Message *</label>
<textarea id="message" name="message" rows="5" required></textarea>
<div class="error-message"></div>
</div>
<div class="form-group">
<label class="checkbox-label">
<input type="checkbox" name="newsletter" id="newsletter">
Subscribe to newsletter
</label>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2025 Sadik Abrahman. All rights reserved.</p>
<div class="social-links">
<a href="#" aria-label="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="#" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="#" aria-label="Twitter"><i class="fab fa-twitter"></i></a>
</div>
</div>
</footer>
<script src="scripts/main.js"></script>
</body>
</html>