-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (48 loc) · 1.99 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
<!DOCTYPE html>
<html>
<head>
<title>Contact me</title>
<link href="styles/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT SERIF" rel="stylesheet"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<body class="contact-body">
<div class="contact-form">
<span class="contact-span">contact me</span>
<div class="contact-field">
<input id="nameField" type="text" placeholder="Your name">
<hr>
</div>
<div class="contact-field", style="margin-top: 4vw;">
<input id="mailField" type="text" placeholder="Your email">
<hr>
</div>
<div class="contact-field", style="margin-top: 4vw;">
<textarea id="messageField" placeholder="Message" id="messageField"></textarea>
<hr>
</div>
<button onclick="sendMail()" id="sendBtn">Send message</button>
<span class="contact-span2">you can also contact me here</span>
<div class="other-links">
<button id="instBtn" onclick="linksClick(this)">
<img src="img/inst.png" alt="instagram">
</button>
<button id="linkBtn" onclick="linksClick(this)">
<img src="img/link.png" alt="linkedin">
</button>
<button id="tgBtn" onclick="linksClick(this)">
<img src="img/tg.png" alt="telegram">
</button>
</div>
</div>
<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("O38tBQ0J7LGCG_GUY");
})();
</script>
<script src="js/contactme.js"></script>
</body>
</html>