-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheducation.html
111 lines (105 loc) · 4.8 KB
/
education.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Curriculum Vitae</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="responsive.css">
<script src="https://kit.fontawesome.com/533b9c4f79.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" charset="utf-8"></script>
</head>
<body>
<input type="checkbox" id="check">
<!-- header start -->
<header>
<label for="check">
<i class="fas fa-bars" id="sidebar_btn"></i>
</label>
<div class="left_area">
<h3>Curriculum Vitae</h3>
</div>
<!-- <div class="right_area">
<a href="#" class="logout_btn">Logout</a>
</div> -->
</header>
<!-- header end -->
<!-- mobile navigation bar start -->
<div class="mobile_nav">
<div class="nav_bar">
<img src="img/profile.jpg" class="mobile_profile_image" alt="">
<i class="fa fa-bars nav_btn"></i>
</div>
<div class="mobile_nav_items">
<a href="index.html"><i class="fas fa-info-circle"></i><span>About</span></a>
<a href="education.html"><i class="fas fa-cogs"></i><span>Education</span></a>
<a href="work.html"><i class="fas fa-table"></i><span>Work Experiences</span></a>
<a href="organization.html"><i class="fas fa-th"></i><span>Organization</span></a>
<a href="skills.html"><i class="fas fa-info-circle"></i><span>Skills</span></a>
</div>
</div>
<!-- mobile navigation bar end -->
<!-- sidebar start -->
<div class="sidebar">
<div class="profile_info">
<img src="img/profile.jpg" class="profile_image" alt="">
</div>
<a href="index.html"><i class="fas fa-info-circle"></i><span>About</span></a>
<a href="education.html"><i class="fas fa-university"></i><span>Education</span></a>
<a href="work.html"><i class="fas fa-briefcase"></i><span>Work Experiences</span></a>
<a href="organization.html"><i class="fas fa-sitemap"></i><span>Organization</span></a>
<a href="skills.html"><i class="fas fa-cogs"></i><span>Skills</span></a>
</div>
<!-- sidebar end -->
<div class="content">
<div class="card">
<img src="img/uns.png" width="50px" style="float: left; margin-right:10px">
Universitas Sebelas Maret Surakarta
<br><b>Mathematics</b>
<br>GPA 3.38/4.00
<ul>
<li>
<b>Speaker</b> for The Second International Conference on Mathematics: Education, Theory, and Application
<br>Published on Journal of Physics: Conference Series 1306 (2019) 012006
</li>
<li>
<b>Undergraduate thesis, 2019</b>
<table>
<tr>
<td>Topic</td>
<td>:</td>
<td>Magic and antimagic labeling (combinatoric)</td>
</tr>
<tr>
<td>Title</td>
<td>:</td>
<td>On <i>H</i>-Supermagic and (<i>a,d</i>)-<i>H</i>-Super Antimagic Total Labeling of Edge Corona Product Graph and Starbarbell Graph</td>
</tr>
</table>
</li>
<li><b>Internship report, 2018</b>
<table>
<tr>
<td>Topic</td>
<td>:</td>
<td>Forecasting</td>
</tr>
<tr>
<td>Title</td>
<td>:</td>
<td>Forecasting Number of New Customers uses Artificial Neural Network Backpropagation</td>
</tr>
</table>
</li>
</ul>
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$('.nav_btn').click(function(){
$('.mobile_nav_items').toggleClass('active');
});
});
</script>
</body>
</html>