-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (93 loc) · 5.07 KB
/
index.html
File metadata and controls
106 lines (93 loc) · 5.07 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
<!DOCTYPE html>
<html>
<head>
<title>Kevin Phan | Portfolio Website </title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="keywords" content="Idiot Precariat">
<meta name="description" content="Kevin Phan - Software Engineering Student from UCI. I like lifehacks and analyzing differences of life.">
<meta name="author" content="Kevin Phan">
<link rel="icon" type="image/png" href="img/favicon.png">
<link rel="stylesheet" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
</head>
<body class="row">
<header class="heading col-12 col-md-12" >
<h1><a id="name-heading" href="index.html">Kevin Phan</a></h1>
<nav class="navigation-bar">
<ul id="navigation-buttons">
<li><a href="#contact">Contact</a></li>
<li><a href="#fun">Fun</a></li>
<li><a href="#work">Work</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</header>
<main>
<section class="about col-12 col-md-12">
<header>
<h1><a name="about">About Me</a></h1>
</header>
<div class="bio col-6 col-md-6">
<h2>Bio</h2>
<p>Hi, I am a student at University of California, Irvine. I have been always interested in using technology and have been since my attendance to elementary school. Right now, I am focused on finishing my coursework and graduate in 2017. I am motivated to solve problems everyday. </p>
<br>
<p>Currently, I am interested in finding projects and internships.</p>
<img class="img-circle" src="img/20161104_200048.jpg">
</div>
<div class="skills col-6 col-md-6">
<h2>Skills</h2>
<ul>
<li ><p>Python</p></li>
<li ><p>JavaScript</p></li>
<li ><p>Java</p></li>
<li ><p>C++</p></li>
<li ><p>HTML5</p></li>
<li ><p>CSS</p></li>
<li ><p>Apache Tomcat</p></li>
<li ><p>MySql</p></li>
</ul>
</div>
</section>
<section class="work col-12 cold-md-12">
<header>
<h1><a name="work">Work</a></h1>
</header>
<div class="portfolio">
<h2><a href="final-project.html">Portfolio Usability Research and Analysis </a></h2>
<p>Performed and wrote various usability evaluation activities about my website: user interviews, competitor analysis, feature value matrixes, feature prioritization, user stories, cognitive walkthroughs, usability tests to understand strengths/weaknesses of my website's interface</p>
<p>Analyzed user feedback and planned incorporation of the results</p>
<h2>Word Problem Generator</h2>
<p>Developed a generator, allowing children to test their arithmetic skills</p>
<p>Prints results on a graph to measure competency</p>
<h2>UAV Forge Groundstation</h2>
<p>Implemented initial network connection between the drone and ground station</p>
<p>Refactored and disposal of repetitive code and maintained code style/consistency</p>
</div>
</section>
<section class="fun col-12 col-md-12">
<header>
<h1><a name="fun">Fun</a>
</h1>
</header>
<p>I like to study different types of computer science applications. I have tried exploring information security and wargames. I found the practice to be very long and difficult. </p>
<p>For fun, I enjoy doing tutorials on Codecademy and learning new frameworks like AngularJS and React. Right now, I am self-studying computer vision and data science.</p>
</section>
</main>
<footer class="contact col-md-12 col-12">
<h1><a name="contact">Contact</a></h1>
<div class="col-md-6 col-6">
<img src="img/Gmail-Logo.png" width="50" height="50">
<strong>kphan4[at] uci [dot] edu </strong>
</div>
<div class="col-md-6 col-6">
<a href="https://www.linkedin.com/pub/kevin-phan/27/186/552"><img src="img/square-linkedin-512.png" alt="View Kevin Phan's profile on LinkedIn" width="50" height="50" ></a>
<strong>My LinkedIn Profile</strong>
</div>
</footer>
</body>
<script src="js/jquery-3.1.1.js"></script>
<script src="js/main.js"></script>
</html>