-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (69 loc) · 3.24 KB
/
Copy pathindex.html
File metadata and controls
77 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset = "utf-8"> <!--Universal Font-->
<meta name = "viewport" content = "width=device-width, initial-scale =1.0"> <!--View on different devices-->
<meta name = "author" content = "Joshua Ting"> <!--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">
<title>Joshua Ting</title>
<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-->
</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>
<div class="square">
<div>
<img src="images/beach_comp.jpg" alt="center pic" class="centimg">
</div>
<div class="content">
<h3 class="name">Joshua Ting</h3>
<p class="title">Data Science</p>
</div>
<div class="wrapper">
<ul>
<a href="https://github.com/justjoshtings"><li class="github"><i class="fa fa-github fa-2x" aria-hidden="true"></i></li></a>
<a href="https://www.linkedin.com/in/joshua-ting-222759118/"><li class="linkedin"><i class="fa fa-linkedin fa-2x" aria-hidden="true"></i></li></a>
<a href="https://www.instagram.com/justjoshtings/"><li class="instagram"><i class="fa fa-instagram fa-2x" aria-hidden="true"></i></li></a>
</ul>
</div>
</div>
</div>
</body>
<footer class="footer">
<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> <!--jQuery-->
<script type="text/javascript" src="script.js"></script>
<noscript>Sorry, your browswer does not support JavaScript</noscript>
<script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js"></script>
<noscript>Sorry, your browswer does not support JavaScript</noscript>
<script>
particlesJS.load('particles-js', 'particles.json', function(){
console.log('particles.json loaded...');
});
</script>
<noscript>Sorry, your browswer 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>
</html>