-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmail_Form.html
41 lines (38 loc) · 1.34 KB
/
Email_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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="Style_EF.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Document
</title>
</head>
<body>
<section>
<div class="container">
<form action="https://formspree.io/f/meqvqywj" method="POST" id="my-form" />
<div class="form-group">
<label form="firstName">Name</label>
<input type="text" id="firstName" name="firstName">
</div>
<div class="form-group">
<label for="latsName">Company</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="message">Message</label>
<textarea name="message" id="message" cols="30" rows="10"></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
<div id="status"></div>
</section>
<!--<script src="JS_EF.js"></script>-->
</body>
</html>