-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
71 lines (66 loc) · 3.35 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mahmoud Fawzy</title>
<link rel="icon" type="image/x-icon" href="images/MFTICO.ico">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/contact.css">
</head>
<body>
<header>
<div class="nav-container">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="services.html">Services</a></li>
<li class="active"><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="contact">
<h2>Contact Me</h2>
<form action="https://formspree.io/f/xovqzdav" method="POST">
<div class="form-container">
<div class="input-item">
<label class="input-label" for="name">Name</label>
<input class="input-field" type="text" id="name" name="name" required>
</div>
<div class="input-item">
<label class="input-label" for="email">Email</label>
<input class="input-field" type="email" id="email" name="email" required>
</div>
<div class="input-item">
<label class="input-label" for="subject">Subject</label>
<input class="input-field" type="text" id="subject" name="subject" required>
</div>
<div class="input-item">
<label class="input-label" for="message">Message</label>
<textarea class="input-field" id="message" name="message" required></textarea>
</div>
<div class="button-container">
<button type="submit" class="btn">Send</button>
</div>
</div>
</form>
<div class="social-links">
<a href="https://www.linkedin.com/in/mft1998/"><img class="social-image" src="images/linkedineditgold.webp" alt="connect with Linkedin"/></a>
<a href="mailto:1998mft1998@gmail.com"><img class="social-image" src="images/gmaileditgold.webp" alt="connect with Gmail"/></a>
<a href="http://wa.me/+201123398770"><img class="social-image" src="images/whatsappeditgold.webp" alt="Connect with Whatsapp"/></a>
<a href="https://github.com/MahmoudFawzyAOE2"><img class="social-image" src="images/githubeditgold.webp" alt="Connect with Github"/></a>
<a href="https://www.upwork.com/freelancers/~0103f88f5c42b06d5b"><img class="social-image" src="images/upworkeditgold.webp" alt="Connect with Upwork"/></a>
</div>
</section>
</main>
<!-- Thanks to https://iconscout.com/contributors/cycloid/3d-illustrations for the free icons -->
<footer>
<p>© 2024 Mahmoud Fawzy. All rights reserved.</p>
</footer>
<script src="scripts/script.js"></script>
<script src="scripts/contact.js"></script>
</body>
</html>