-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (44 loc) · 2.97 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>
<header>
<link rel="stylesheet" href="Example CSS Style Templates/style2.css">
<link rel="stylesheet" href="table_style.css">
<title>My Webpage Title</title>
</header>
<body>
<!---Navigation--->
<!--This section of code defines the navigation bar at the top of the page. The classes used here are defined in the style.css file.-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<!--This code defines the "My Webpage" link in the top left corner of the navigation pane-->
<a class="navbar-brand" href="./index.html">My Webpage</a>
<!--This code defines the "List" link in the top right corner of the navigation pane-->
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="./list.html">List</a></li>
</ul>
</div>
</nav>
<!--This section defines the middle section of the webpage-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- This code is for the student name-->
<h1 class="masthead-heading text-uppercase mb-0">Weijie(Jenny) Jiang</h1>
<!--This code creates the two lines separating the student name from the subtitle-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-line"></div>
</div>
<!--This code creates the subheading underneath the line dividers-->
<p class="masthead-subheading font-weight-light mb-0">Music | Sports | Food | Traveling</p>
</div>
</header>
<center>
<br /><br />
<div class="col-md-6 col-lg-4 mb-5">
<!-- put your bio paragraph here; remember to use the correct html tags -->
<p style="text-align:justify;">Hi there! I am a graduate student from School of Information, UC Berkeley. I received my PhD degree from Tsinghua University, Management Science and Engineering department in June 2020, and have been committed to designing computational approaches to cross-disciplinary areas, such as education and e-commerce. My research interests include Learning Analytics, Machine Learning, and Recommender Systems etc. Most of my research deal with dynamic user modeling, which ignited my intersts in various NLP related learning methods (such as HMM, RNN, attention-based models such as Transformer) and adapting them to germane recommendation contexts.</p>
<p style="text-align:justify;">In my spare time, I love music, sports, exploring new food and places. Thanks for visiting!</p>
</div>
</center>
</body>
</html>