-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
128 lines (100 loc) · 3.96 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
<!DOCTYPE html>
<html>
<head>
<title>Lam's Blog</title>
<link href="https://fonts.googleapis.com/css?family=Bellefair|Open+Sans+Condensed:300" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./ionicons-2.0.1/css/ionicons.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="Personal_blog.css">
</head>
<body>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">LAM NGUYEN</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="education.html">Education</a></li>
<li><a href="https://arcane-harbor-71706.herokuapp.com/blogs">Blog</a></li>
</ul>
</div>
</nav>
<div class"Post">
<div class="container">
<img id="My_picture" src="20643253_831407020349328_6358716575013489438_o.jpg">
<p class="pre_paragraph">
I'm Lam, a student pursuitting computer science major at University
of California at Berkeley
</p class="pre_paragraph">
<p class="pre_paragraph">
My major is Electrical Engineering and Computer Science. I transfer to UC Berkeley
from De Anza College in 2017
</p>
<p class="pre_paragraph">
My home country is Viet Nam. Besides my interest in science, I also play guitar and
soccer in my free time
</p>
</div>
</div>
<div class="Post">
<div class="container">
<h3 id= "header"> Some highlighted projectes I have done</h3>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://github.com/nblam1994/Hog">Hog</a></td>
<td>A Hog game that player can play against another or computer</td>
</tr>
<tr>
<td><a href="https://github.com/nblam1994/Yelp-Map">Yelp</a></td>
<td>A Yelp map that recommend good restaurant near UC Berkeley</td>
</tr>
<tr>
<td><a href="https://github.com/nblam1994/Scheme">Scheme</a></td>
<td>Implement Scheme language using Python</td>
</tr>
<tr>
<td><a href="https://github.com/nblam1994/Color-Game">Color Game</a></td>
<td>Guessing color game by a given combination Red, Blue and Green, play
by click <a href="./Color Project/ColorGame.html">here</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<footer>
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<a href="#" class="navbar-brand">LAM NGUYEN</a>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="infor">
<a href="mailto:[email protected]"><span class="my_icon ion-android-mail"></span></a>
<a href="https://www.facebook.com/profile.php?id=100004401125091"> <span class="ion-social-facebook my_icon"></span></a>
<a href="https://www.linkedin.com/in/lam-nguyen-46ba89bb/"> <span class="ion-social-linkedin my_icon"></span> </a>
</div>
</div>
<div class="col-md-6">
<p class="final-note">
Lam is a computer science student. He is seeking for an internship
in his study field so as to gain real life experience. Recuiter can find
Lam's contact to the left
</p>
</div>
</div>
</div>
</nav>
</footer>
<script type="text/javascript" src="Personal_blog.js"></script>
</body>
</html>