-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
78 lines (69 loc) · 3.24 KB
/
Copy pathcontact.html
File metadata and controls
78 lines (69 loc) · 3.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name = "viewport" content = "width=device-width, initial-scale =1.0"> <!--View on different devices-->
<meta name = "author" content = "Joshua Ting | Contact"> <!--Website meta author-->
<meta name = "description" content = "Joshua Ting Website"> <!--Website meata description-->
<meta name = "keywords" content = "blog,portfolio">
<link rel="canonical" href="https://www.joshting.com">
<link rel="icon" type="image/x-icon" href="images\ting_logo06.png"> <!--Tab Icon-->
<!-- <link rel="author" .... -->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto'>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <!--fonts-->
<title>Joshua Ting | Contact</title>
</head>
<body>
<script>document.body.className += ' fade-out';</script>
<div class="wrapper-background">
<span class="nav-button" style="cursor:pointer" onclick="openNav()">☰</span>
<div id="side-menu" class="side-nav">
<a href="#" class="btn-close" onclick="closeNav()">×</a>
<a href="index.html" class="nav-links">Home</a>
<a href="about.html" class="nav-links">About</a>
<!-- <a href="portfolio.html" class="nav-links">Portfolio</a> -->
<a href="contact.html" class="nav-links">Contact</a>
</div>
<div id="particles-js"></div>
<form class='form' action="https://formspree.io/f/xgepbaan" method="POST">
<p>Contact Me</p>
<input type="text" name="name" placeholder="Name">
<input type="email" name="_replyto" placeholder="Email">
<input name="_subject" placeholder="Subject">
<textarea name="message" placeholder="Message"></textarea>
<input type="hidden" name="_next" value="//joshting.com/thankyou.html"/>
<input type="text" name="_gotcha" style="display:none" />
<button type="submit" id="submit">Send</button>
</form>
<div id="map"></div>
<div id="map_overlay"></div>
</div>
</body>
<footer class="footer">
<!-- <p>Created by:</p> -->
<img src="images/mylogo_01.png" alt="personal logo" class="mylogo">
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<noscript>Sorry, your browser does not support JavaScript</noscript>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<noscript>Sorry, your browser does not support JavaScript</noscript>
<script>
particlesJS.load('particles-js', 'particles.json', function(){
console.log('particles.json loaded...');
});
</script>
<noscript>Sorry, your browser does not support JavaScript</noscript>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-116094593-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-116094593-1');
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBip_gkrsK4Efph6HbiWjLVlvQ5RUTuUME&callback=initMap">
</script>
</html>