-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
125 lines (121 loc) · 3.75 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Dosis"
rel="stylesheet"
/>
<link rel="stylesheet" href="dist/css/main.css" />
<title>Contact Me | Software Engineer</title>
</head>
<body>
<!-- Header -->
<header id="header-inner">
<div class="container">
<nav id="main-nav">
<img src="dist/img/logo5.png" alt="My Portfolio" 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>[email protected]</p>
</div>
<div>
<i class="fas fa-phone fa-2x"></i>
<h3>Phone</h3>
<p>(555) 555-5555</p>
</div>
<div>
<i class="fas fa-address-card fa-2x"></i>
<h3>Address</h3>
<p>50 Main st, Boston MA</p>
</div>
</div>
</div>
</section>
<!-- Section C: Tagline -->
<section id="contact-c" class="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 © 2019. All Rights Reserved</p>
<div class="social">
<i class="fab fa-twitter"></i>
<i class="fab fa-facebook"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-linkedin"></i>
</div>
</div>
</footer>
</body>
</html>