-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (63 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
64 lines (63 loc) · 1.92 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.0.0/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous"
/>
<script src="index.js"></script>
<script
type="text/javascript"
src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"
></script>
<script type="text/javascript">
(function () {
emailjs.init("J01QMSmqj93QY8gmJ");
})();
</script>
</head>
<body>
<div class="container border mt-3 bg-light">
<div class="row">
<div class="col-md-6 p-5 bg-primary text-white">
<h1>Hi there!</h1>
<h4>
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Quo,
</h4>
</div>
<div class="col-md-6 border-left py-3">
<h1>Contact form</h1>
<div class="form-group">
<h5 for="name">Name</h5>
<input
type="text"
class="form-control"
id="name"
placeholder="Enter name"
/>
</div>
<div class="form-group">
<h5 for="email">Email</h5>
<input
type="email"
class="form-control"
id="email"
placeholder="Enter email"
/>
</div>
<div class="form-group">
<h5 for="message">Message</h5>
<textarea class="form-control" id="message" rows="3"></textarea>
</div>
<button class="btn btn-primary" onclick="sendMail()">Submit</button>
</div>
</div>
</div>
</body>
</html>