-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
150 lines (148 loc) · 4.63 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<title>CF First Project v2</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU"
crossorigin="anonymous"
/>
<link href="css/site.css" rel="stylesheet" />
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="#">ToDo</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarCollapse"
aria-controls="navbarCollapse"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav me-auto mb-2 mb-md-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">The App</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">The Code</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- ======= Hero Section ======= -->
<main id="hero">
<div class="container col-xxl-8 px-4 py-5">
<h1 class="text-center mb-3">Contact Me</h1>
<form
name="ToDo-ContactForm"
method="POST"
data-netlify-recaptcha="true"
data-netlify="true"
>
<div class="row mb-1">
<div class="col">
<label class="form-label">First Name</label>
<input
type="text"
name="firstName"
class="form-control"
placeholder="First name"
aria-label="First name"
required
/>
</div>
<div class="col">
<label class="form-label">Last Name</label>
<input
type="text"
name="lastName"
class="form-control"
placeholder="Last name"
aria-label="Last name"
required
/>
</div>
</div>
<div class="row mb-1">
<div class="col">
<label class="form-label">Email</label>
<input
type="email"
name="email"
class="form-control"
placeholder="Email"
aria-label="Email"
required
/>
</div>
<div class="col">
<label class="form-label">Phone (optional)</label>
<input
type="text"
name="phone"
class="form-control"
placeholder="Phone"
aria-label="Phone"
/>
</div>
</div>
<div class="row mb-1">
<div class="col">
<label class="form-label">Subject</label>
<input
type="text"
name="subject"
class="form-control"
placeholder="Subject"
aria-label="Subject"
required
/>
</div>
</div>
<div class="row mb-1">
<div class="col">
<label class="form-label">Message</label>
<textarea
type="text"
name="message"
class="form-control"
placeholder="Message"
aria-label="Message"
required
></textarea>
</div>
</div>
<div data-netlify-recaptcha="true"></div>
<button type="submit" class="btn btn-primary mt-2">Submit</button>
</form>
</div>
</main>
<!-- Bootstrap JS -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ"
crossorigin="anonymous"
></script>
</body>
</html>