-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
81 lines (71 loc) · 3.38 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
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7MQN2DX6F3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7MQN2DX6F3');
</script>
<title>Minjeong Shin Profile</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="static/mycss.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Kaushan+Script' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Slab:400,100,300,700' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script>
</head>
<body>
<div class="row">
<div class="col-md-3 col-sm-12 col-xs-12">
<div id="intro"></div>
</div>
<div class="col-md-9 col-sm-12 col-xs-12">
<nav class="navbar">
<div id="navbar" class="">
<ul class="nav nav-tabs">
<li class="active"><a href="#home" data-toggle="tab">Home</a></li>
<li><a href="#work" data-toggle="tab">Work</a></li>
<li><a href="#education" data-toggle="tab">Education</a></li>
<li><a href="#publication" data-toggle="tab">Publication</a></li>
<li><a href="#patent" data-toggle="tab">Patent</a></li>
<!-- <li><a href="#contact" data-toggle="tab">Contact</a></li> -->
</ul>
</div>
</nav>
<div class="tab-content" id="nav-tabContent">
<div id="home" class="tab-pane fade in active"></div>
<div id="work" class="tab-pane fade"></div>
<div id="education" class="tab-pane fade"></div>
<div id="publication" class="tab-pane fade"></div>
<div id="patent" class="tab-pane fade"></div>
<!-- <div id="contact" class="tab-pane fade"></div> -->
</div>
</div>
</div>
</body>
</html>
<script>
$(function(){
$("#intro").load("intro.html");
$("#home").load("home.html");
$("#work").load("work.html");
$("#education").load("edu.html");
$("#publication").load("pub.html");
$("#patent").load("pat.html");
// $("#contact").load("contact.html");
var hash = window.location.hash;
hash && $('ul.nav a[href="' + hash + '"]').tab('show');
$('.nav-tabs a').click(function (e) {
$(this).tab('show');
var scrollmem = $('body').scrollTop() || $('html').scrollTop();
window.location.hash = this.hash;
$('html,body').scrollTop(scrollmem);
});
});
</script>