-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
61 lines (44 loc) · 1.64 KB
/
form.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
<!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">
<title>jay gangurde</title>
<!-- Bootstrap css file -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- font awesome icons -->
<link rel="stylesheet" href="./css/all.min.css">
<!-- Magnific Popup css file -->
<link rel="stylesheet" href="./vendor/Magnific-Popup/dist/magnific-popup.css">
<!-- Owl-carousel css file -->
<link rel="stylesheet" href="./vendor/owl-carousel/css/owl.carousel.min.css">
<link rel="stylesheet" href="./vendor/owl-carousel/css/owl.theme.default.min.css">
<!-- custom css file -->
<link rel="stylesheet" href="./form.css">
<!-- Responsive css file -->
<link rel="stylesheet" href="./css/responsive.css">
</head>
<body>
<section>
<div class="container">
<form action="https://formspree.io/f/mwkaynjq" method="POST" id="my-form">
<div class="form-group">
<label for="firstName">NAME</label>
<input type="text" id="firstName" name="firstName">
</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">SUBMIT</button>
</form>
</div>
<div id="status"></div>
</section>
</body>
</html>