-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1012 Bytes
/
index.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
<!DOCTYPE html>
<head>
<title>Form submission</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section>
<div class="container">
<form action="https://formspree.io/mbjzbwaj" method="POST" id="my-form">
<div class="form-group">
<label for="firstName"> First Name</label>
<input type="text" id="firstName" name="firstName">
</div>
<div class="form-group">
<label for="latsName">Last Name</label>
<input type="text" id="lastName" name="lastName">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email">
</div>
<div class="form-group">
<label for="massage">Massage</label>
<textarea name="massage" id="massage" cols="30" rows="10"></textarea>
</div>
<button type="submit" class="success">Submit</button>
</form>
</div>
<div id="status"></div>
</section>
</body>
</html>