-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
119 lines (115 loc) · 3.57 KB
/
contact.html
File metadata and controls
119 lines (115 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://kit.fontawesome.com/9a00dfd817.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="css/main.css" />
<link rel="shortcut icon" type="image/png" href="./favicon.png" />
<title>Contact Me | Front End Developer</title>
</head>
<body>
<!-- Header -->
<header id="header-inner">
<div class="container">
<nav id="main-nav">
<img src="img/logo1.png" alt="Portfolio Logo" id="logo" />
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="work.html">Work</a></li>
<li><a href="contact.html" class="current">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- Section A Contact Form -->
<section id="contact-a" class="text-center py-3">
<div class="container">
<h2 class="section-title">Contact Me</h2>
<div class="bottom-line"></div>
<p class="lead">Here is how you can reach me</p>
<form method="POST" data-netlify="true" data-netlify-recaptcha="true">
<div class="text-fields">
<input
type="text"
class="text-input name-input"
placeholder="Name"
name="name"
/>
<input
type="text"
class="text-input subject-input"
placeholder="Subject"
name="subject"
/>
<input
type="email"
class="text-input email-input"
placeholder="Email Address"
name="email"
/>
<input
type="text"
class="text-input phone-input"
placeholder="Phone Number"
name="phone"
/>
<textarea
class="text-input message-input"
placeholder="Enter Message"
name="message"
></textarea>
<div class="my-2">
<div data-netlify-recaptcha="true"></div>
</div>
</div>
<button type="submit" class="btn-dark">Submit</button>
</form>
</div>
</section>
<!-- section B : Contact info -->
<section id="contact-b" class="py-3 bg-dark">
<div class="container">
<div class="contact-info">
<div>
<i class="fas fa-envelope fa-2x"></i>
<h3>Email</h3>
<p>mhomdtayel@gmail.com</p>
</div>
<div>
<i class="fas fa-phone fa-2x"></i>
<h3>Phone</h3>
<p>01202373834</p>
</div>
<div>
<i class="fas fa-address-card fa-2x"></i>
<h3>Address</h3>
<p>Egypt, Menofia , Tala</p>
</div>
</div>
</div>
</section>
<section id="contact-c" class="text-center bg-main py-4">
<div class="container">
<h1>Let's Start Your Next Project</h1>
</div>
</section>
<!-- Footer -->
<footer id="main-footer">
<div class="footer-content container">
<p>Copyright © 2020 All Rights Reserved</p>
<div class="social">
<i class="fab fa-facebook"></i>
<i class="fab fa-github"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-linkedin-in"></i>
</div>
</div>
</footer>
<script src="js/typewriter.js"></script>
</body>
</html>