-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en" prefix="og:http://ogp.me/ns#">
<head>
<title>Wenjie Mo</title>
<meta charset="UTF-8">
<meta name="author" content="Wenjie Mo"/>
<link rel="stylesheet" href="./css/style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./css/jquery.jsonview.css"/>
<script type="text/javascript" src="./script/jquery.min.js"></script>
<script type="text/javascript" src="./script/jquery.jsonview.js"></script>
<script type="text/javascript" src="./script/utility.js"></script>
<meta property='og:title' content='Wenjie Mo Personal Website'/>
<meta property='og:image'
content='https://raw.githubusercontent.com/wenjie-mo/wenjie-mo.github.io/main/assets/images/github.jpg'/>
<meta property='og:url' content='https://wenjie-mo.github.io'/>
</head>
<body>
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'About_me.json')" id="defaultOpen">About_me.json</button>
<button class="tablinks" onclick="openTab(event, 'Resume.pdf')">Resume.pdf</button>
<button class="tablinks" onclick="openTab(event, 'Contact.txt')">Contact.txt</button>
</div>
<div id="About_me.json" class="tabcontent">
<div id="json"></div>
</div>
<div id="Resume.pdf" class="tabcontent">
<iframe src="https://drive.google.com/file/d/1ljDo-Vsv66EpVWD7zCjqW-kXDhL1y9a5/preview" width="880" height="840"
allow="autoplay"></iframe>
</div>
<div id="Contact.txt" class="tabcontent">
<pre>
<span class="contact-highlight"> Email: devwmo [at] gmail.com</span>
<span class="contact-highlight"> WeChat: MartinMo666</span>
</pre>
</div>
<!-- Image for LinkedIn Preview -->
<img src="./assets/images/github.jpg" width='0' height='0'/>
<script>
document.getElementById("defaultOpen").click();
</script>
</body>
</html>