-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
90 lines (65 loc) · 2.07 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<body background="images/background.jpg">
<head>
<title>Khoi Tran | Portfolio</title>
<!-- Stylesheet goes here-->
<link rel="stylesheet" href="CSS/main.css">
</head>
<body>
<nav>
<a href="index.html">About Me</a>
|
<strong>Portfolio</strong>
</nav>
<h1>Khoi Tran</h1>
<hr>
<h2>Experience</h2>
<p>I recently graduated from a Front-End Web Development course at General Assembly<br>
where I learned HTML, CSS, JavaScript, and jQuery and learned how to be an <b>awesome</b><br>
Front-End Web Development. During my spare time, I enjoy weight lifting,<br>
gaming, and watching anime. </p>
<hr>
<!-- Portfolio section for past works -->
<h3>PORTFOLIO</h3>
<ul>
<li>
<i><b>Web Developer</b></i>, Relaxr 2015-present
<p>
Developed a multi-column layout blog, landing page, and contact forms that rendered<br>mobile devices.
</p>
<img src="images/relaxr_deliverable.png">
</li>
<li>
<i><b>Web Developer</b></i>, Startup Matchmaker 2015-present
<p>
Used a design team's wireframes to develop this company's responsive homepage.
</p>
<img src="images/startup_matchmaker_deliverable.png" >
</li>
<li>
<i><b>Web Developer</b></i>, CitiPix 2015 - present
<p>
Built web app prototype that allows users to store and quickly retrieve photos using keywords.
</p>
<img src="images/citipix_deliverable.png" >
</li>
</ul>
<h3>Education</h3>
<ul>
<li><strong>General Assembly </strong>- FEWD 2016</li>
<li><strong>University of California, Riverside </strong>- B.A. 2014</li>
<li><strong>Canyon High School </strong>- 2005 - 2009 </li>
</ul>
<hr>
<footer>
<a href="http://facebook.com/" rel="nofollow" target="zero">Facebook</a>
|
<a href="http://twitter.com/" rel="nofollow" target="zero">Twitter</a>
|
<a href="http://instagram.com/" rel="nofollow" target="zero">Instagram</a>
|
<a href="http://linkedin.com/" rel="nofollow" target="zero">LinkedIn</a>
</footer>
</body>
</html>