-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (65 loc) · 2.98 KB
/
contact.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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="Utf-8">
<meta name="author" content="Adi Sempertegui">
<meta name="description" content="weekly blog">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adi's Website</title>
<link rel="stylesheet" href="css/contact.css">
<link rel="stylesheet" href="css/share.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script language="JavaScript" type="text/javascript" src="js/nav.js"></script>
</head>
<script>
window.addEventListener("load", function() {
$.get("https://semperag.github.io/nav.html", function(data){
$("#contact-link").addClass("active");
});
});
</script>
<body>
<video id="preloader" autoplay loop muted playsinline src="css/preloader.mp4" type="video/mp4"></video>
<div id="root">
<main>
<div id="center-view">
<div id="nav-placeholder"></div>
<table id="resume">
<tbody>
<form action="https://formsubmit.co/[email protected]" method="POST">
<tr>
<th class="resume-title" scope="col">
Contact me
</th>
</tr>
<tr>
<td>
<textarea id="name-textarea" placeholder="Name"></textarea>
<input type="hidden" name="_next" value="https://semperag.github.io/contact.html">
</td>
</tr>
<tr>
<td>
<textarea id="email-textarea" type="email" name="email" placeholder="Email*" required></textarea>
</td>
</tr>
<tr>
<td>
<textarea id="message-textarea" type="text" name="message" placeholder="Message*" required></textarea>
</td>
</tr>
<tr>
<td id="send">
<button id="send-button" type="submit" onClick="sendMessage()">Send</button>
</td>
</tr>
</form>
</tbody>
</table>
</div>
</main>
</div>
<script language="JavaScript" type="text/javascript" src="js/share.js"></script>
</body>
</html>