-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (95 loc) · 3.69 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>Michael Tang</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript
><link rel="stylesheet" href="assets/css/noscript.css"
/></noscript>
<script src="https://kit.fontawesome.com/de261fd445.js" crossorigin="anonymous"></script>
</head>
<body class="is-preload">
<div id="wrapper">
<div id="bg"></div>
<div id="overlay"></div>
<div id="main">
<!-- Header -->
<header id="header">
<h1>Michael Tang</h1>
<p>
Software Engineer • B.S. Computer Science
• B.S. Statistics
</p>
<nav>
<ul>
<li>
<a href="https://www.linkedin.com/in/mtangmt/" class="icon brands fa-linkedin"></a>
<span class="label">LinkedIn</span>
</li>
<li>
<a href="https://github.com/mtangmt" class="icon brands fa-github"></a>
<span class="label">Github</span>
</li>
<li>
<a href="Michael_Tang_Resume.pdf" class="icon fa-file" download></a>
<span class="label">Resume</span>
</li>
<li>
<a href="mailto:mtangmt@gmail.com" class="icon fa-envelope"></a>
<span class="label">Email</span>
</li>
<li>
<a class="icon fa-diagram-project" onclick="showProjects()"></a>
<span class="label">Projects</span>
</li>
</ul>
<div id = "projectid">
<br>
<a href="https://mtangmt.github.io/CMSC422-Final-Project/">Fruits Image Classifier</a> <br>
<a href="https://mtangmt.github.io/CMSC320-Final-Project/">Stasticial Analysis of the Cost of College</a> <br>
<a href="https://cmsc335-final-project-aqer.onrender.com/">Web Page With a MongoDB Database, Serving NASA API</a> <br>
<a class = "nonhover">
</a>
</div>
</nav>
</header>
<!-- Footer -->
<footer id="footer"> Design:
<a href="http://html5up.net"> HTML5 UP</a>
</footer>
</div>
</div>
<script>
document.body.style.zoom="70%"
window.onload = function () {
document.getElementById("projectid").style.display = "none";
document.body.classList.remove("is-preload");
};
window.ontouchmove = function () {
return false;
};
window.onorientationchange = function () {
document.body.scrollTop = 0;
};
function showProjects() {
var x = document.getElementById("projectid");
if (x.style.display === "none") {
x.style.display = "inline";
} else {
x.style.display = "none";
}
}
</script>
</body>
</html>