-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (155 loc) · 4.52 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<title>Daisy's Portfolio</title>
<link rel="stylesheet" href="stylesheets/styles.css" />
<link rel="stylesheet" href="stylesheets/pygment_trac.css" />
<meta name="viewport" content="width=device-width" />
</head>
<body>
<nav class="menu">
<ul class="menu-items">
<li>
<a class="menu-text" href="https://daisybiubiubiu.github.io/"
><strong>Main</strong></a
>
</li>
<li>
<a
class="menu-text"
href="https://daisybiubiubiu.github.io/projects.html"
>Projects</a
>
</li>
<li>
<a
class="menu-text"
href="https://daisybiubiubiu.github.io/contact.html"
>Contact</a
>
</li>
</ul>
</nav>
<div class="wrapper">
<header>
<h1 class="home-h1">Jiaxue Li <button onclick="changePhoto()">Change🐹</button></h1>
<img class = "photo" src="assets/images/photo.jpg" alt="Bobo hamster" />
<p>
🎓Northeastern University<br />
🎈Vancouver, Canada
</p>
<ul>
<li>
<a href="http://daisy.jiaxue.li@outlook.com">
Contact via <strong>E-mail</strong></a
>
</li>
<li>
<a href="http://github.com/Daisybiubiubiu"
>View on<strong>Github</strong></a
>
</li>
<li>
<a href="http://linkedin.com/in/jiaxue-li-9b42901b7/"
>Connect by <strong>Linkedin</strong></a
>
</li>
</ul>
</header>
<section>
<h1 class="home-h1">About Me <button onclick="changeMode()">Change Background</button></h1>
<p>👋Hi, there! Welcome to Daisy's page!</p>
<p>
I am a current CS student at Northeastern University, Vancouver. I am
trying my best to battle with software knowledge, and aspiring to
defeat it one day.
</p>
<p>
<em
>View my fighting history<a href="http://github.com/Daisybiubiubiu">
here.</a
>
</em>
</p>
<h2>News</h2>
<ol>
<li>
Aug. 17, 2021. ☀. Arrived in Vancouver! New Trip start!
</li>
<li>
Sep. 17, 2021. ☀. Moved to Richmond.
</li>
<li>
Oct. 12, 2021. 🌦️. Passed the Learner Driver Lisence!
</li>
<li>
Nov. 20, 2021. ☀. Get started on leetcode!
</li>
<li>
Dec. 2, 2021. 🌧️. Finished a React Native Project,
Pixel Fun!
</li>
</ol>
<p>...</p>
<h2>Education</h2>
<li>
Shanghai Univeristy
<small><em>BS.</em> in Information Systems</small>
<span>Sep. 2017 - Jun. 2021</span><br />
</li>
<li>
Northeastern Univeristy
<small><em>MS.</em> in Computer Science</small>
<span>Sep. 2021 - Present</span><br />
</li>
<a href="https://www.northeastern.edu/" target="_blank"
><img src="assets/images/neu-logo.png" alt="neu logo"
/></a>
<p />
<h2>Skills</h2>
<table>
<tbody>
<tr>
<th>Language</th>
<th>Profiency</th>
</tr>
<tr>
<td>Java</td>
<td>⭐⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Python</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Javascript</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>HTML/CSS</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>C</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>SQL</td>
<td>⭐⭐⭐</td>
</tr>
<tr>
<td>Matlab</td>
<td>⭐⭐</td>
</tr>
</tbody>
</table>
</section>
<footer>
<p><small>Thanks for stopping by :)</small></p>
</footer>
</div>
<script src="javascripts/dynamic.js"></script>
</body>
</html>