-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
167 lines (141 loc) · 5.99 KB
/
index.html
File metadata and controls
167 lines (141 loc) · 5.99 KB
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 lang="en">
<head>
<title>Fenting Lin's Page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="CSS/style.css">
<script type="text/javascript" src="/JS/sendEmail.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg" id="navbar">
<a class="navbar-brand">Me</a>
<button class="navbar-toggler" id="toggler" data-toggle="collapse" data-target="navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#aboutMeSection">About Me <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#educationSection">Educations</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#experienceSection">Experience</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contactSection">Contact Me</a>
</li>
</ul>
</div>
</nav>
<!-- About me -->
<div class="container-fluid" id="aboutMeSection">
<div id="aboutMeContent">
<h3><strong>Who AM I?</strong></h3>
<img src="Image/IMG_2263.JPG" class="img-responsive img-circle my-avatar">
<h4 class="title slide-bar">I am Kiki</h4>
<p class="subtitle slide-bar">
I'm a Chinese Girl.<br>
Like singing, watching vlog on Youtube, playing my phone and Programing!<br>
My favorite city in US is <strong>PORTLAND</strong>
</p>
</div>
</div>
<!-- Portland -->
<div class="container-fluid" id="portland">
<div id="pdxContent">
<img src="Image/pdx.jpg">
<p>
Portland Deer Sign.<br>
</p>
</div>
</div>
<!-- Education -->
<div class="container-fluid text-center" id="educationSection">
<div id="eduContent">
<img src="Image/graduation.jpg">
<div id="school">
<h1><strong>Educations</strong></h1>
<div id="psu">
<!-- <div id="skill1">Java</div> -->
<div><img src="Image/psu_logo.png"></div>
<div><p><strong>Portland State University</strong> - 2015 ~ 2019</p></div>
<br>
<p style="font-size: 18px;">Computer Science - Bachelor</p>
</div>
<div id="fjut">
<div><img src="Image/fjut_logo.PNG"></div>
<div><p><strong>Fujian Technology of University</strong> - 2013 ~ 2015</p></div>
<p style="font-size: 18px;">Software Engineer - Bachelor</p>
</div>
</div>
</div>
</div>
<!-- Experience -->
<div class="container-fluid" id="experienceSection">
<h1 class="text-center"><strong>Experiences</strong></h1>
<div class="row" id="expRow">
<div class="col" id="deepmarketCol">
<h4 class="text-center"><strong>Deep Market</strong></h4>
<ul>
<li>Provide machine module at a minimum cost for ~30 students taking machine learning class.</li>
<li>Support users lend their machine's computational resources or submit jobs for execution.</li>
<li>Developed an PyQt GUI which communicates with the backend JavaScript REST API and MongoDB.</li>
<li><a href="https://deepmarket.cs.pdx.edu/" target="_blank">Deepmarket</a></li>
</ul>
</div>
<div class="col" id="mozillaCol">
<h4 class="text-center"><strong>Mozilla Firefox</strong></h4>
<ul>
<li>Designed and developed a basal add-on toolkit called Gecko based on Inotify and FSEvents API.</li>
<li>Gecko toolkit monitors filesystem changes in the Linux and macOS filesystem.</li>
<li>Provides API hooks for extension and add-on developers.</li>
<li>Release an open-source product that supports programmers build the advanced extension.</li>
</ul>
</div>
</div>
</div>
<!-- Contact -->
<div class="container-fluid text-center" id="contactSection">
<h2><strong>GET IN TOUCH</strong></h2>
<hr id="underline">
<div id="inputSection">
<div id="nameAndEmail">
<div>
<input type="text" placeholder="Name" id="senderName">
</div>
<div>
<input type="text" placeholder="Email" id="senderEmail">
</div>
</div>
<div id="message">
<!-- <input type="text" placeholder="Leave your message..."> -->
<textarea placeholder="Leave your message here..." id="emailBody"></textarea>
</div>
<button id="sendButton" onclick="send()">SEND MESSAGE</button>
</div>
<hr id="solidLine">
<!-- <hr id="solidLine"> -->
<p id="info">
Phone: 971-280-5628 | Email: linfenting@gmail.com
</p>
</div>
</body>
<script type="text/javascript">
function send(){
var name = $('#senderName').val();
var mail = $('#senderEmail').val();
var content = $('#emailBody').val() + "email is: " + mail;
var sub = "Hello from " + name;
location="mailto:"+"linfenting@gmail.com"+"?subject="+sub+"&body="+content;
console.log(name);
}
</script>
</html>