-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 2.3 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap"
rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<script src="https://kit.fontawesome.com/7a1c330123.js" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js" defer></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/toastify-js" defer></script>
<script src="./js/script.js" defer></script>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" defer crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tilt.js/1.2.1/tilt.jquery.min.js" defer></script>
<script src="https://smtpjs.com/v3/smtp.js" defer></script>
<title>Contact Page</title>
</head>
<body>
<div class="container">
<div class="content">
<img data-tilt src="./assets/contact.png" alt="contact img">
<form onsubmit="sendEmail(); reset(); return false;" method="post">
<h1>Contact Us</h1>
<div class="label">
<i class="fa fa-user input"></i>
<input type="text" placeholder="Name" id="name" required>
</div>
<div class="label">
<i class="fa fa-envelope input"></i>
<input type="email" placeholder="E-mail" id="email" required>
</div>
<div class="label">
<i class="fa fa-phone input"></i>
<input type="text" placeholder="Phone" id="phone" oninput="aplicarMascara()" maxlength="15" required>
</div>
<div class="label">
<textarea placeholder="Type your message here..." id="message" cols="30" rows="10"></textarea>
</div>
<button type="submit"><i class="fa fa-paper-plane textarea"></i> Send</button>
</form>
</div>
</div>
</body>
</html>