-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
70 lines (47 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Mohamed Desoky Contact</title>
<link href="contact.css" rel="stylesheet"/>
</head>
<body>
<header>
<h3>Desoky Capital</h3>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">GitHub Portfolio</a></li>
<li><a href="real-estate.html">Real Estate</a></li>
<li><a href="investment-products.html">Investment Products</a></li>
<li><a href="venture-capital.html">Venture Capital</a></li>
<li><a href="literary-works.html">Literary Works</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h2 class="contact_heading">Contact Me:</h2>
<section class="grid_footer">
<form class = "contact_form" id="form">
<label for="name">Name:</label>
<input id="name" type="name" value=""/>
<label for="email">Email:</label>
<input id="email" type="email" value=""/>
<label for="message">Message:</label>
<textarea id="message" rows="8" placeholder="Include any details about your inquiry here."></textarea>
<input id="submit" class="submit_btn" style="background-color: whitesmoke" type="submit" value="Submit"/>
</form>
</section>
</main>
<footer>
<p>© 2024 Mohamed Desoky. All Rights Reserved.</p>
<p><a href="https://www.linkedin.com/in/mohameddesoky/" target="_blank">LinkedIn</a></p>
<p><a href="https://www.facebook.com/desokycapital/" target="_blank">Facebook</a></p>
</footer>
<script src="contact.js"></script>
</body>
</html>