-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathd.html
More file actions
20 lines (20 loc) · 689 Bytes
/
Copy pathd.html
File metadata and controls
20 lines (20 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="form.css">
</head>
<body>
<div class="container">
<h2>Get in Touch</h2>
<form onsubmit="emailSend(); reset(); return false;">
<input type="text" id="name" placeholder="name" name="name" required>
<input type="text" id="phone" placeholder="phone" name="phone" required>
<input type="email" id="email" placeholder="email" name="email" required>
<button type="submit" class="btn">submit</button>
</form>
</div>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="form.js"></script>
</body>
</html>