-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (61 loc) · 2.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Matthew Choi's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet">
</head>
<body>
<nav class="main-nav"> <!-- This is the tab where the headers are at. -->
<ul class="nav">
<li class="home" ><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li>Photos</li>
<li>Contact</li>
</ul>
</nav>
<header>
<img src="images/propic.jpg" alt="Drawing of Matthew Choi" class="profile-image">
<h1 class="tag name">Hi, I'm Matthew Choi.</h1>
<p class="tag location">I'm from Irvine, California.</p>
</header>
<main class="flex">
<div class="card">
<h2 class="card-title">Background</h2>
<p>I am an aspiring Front-End Developer who enjoys creating websites using HTML, CSS, and JavaScript. As an Informatics major at UCI, I love designing
different user interfaces that creates a better user experience using code.
</p>
<p>I enjoy playing the drums and am currently the drummer for the college worship band at my local church called Berean Community Church. I am also part of the on campus Christian fellowship called CCM or
Crossroads Campus Ministry.
</p>
<ul>
<li>To learn more, <a href="experience.html">view my resume.</a></li>
</ul>
</div>
<div class="card">
<h2 class="card-title">Goals & Interests</h2>
<p>- To continue building my web development skills and abilities in:</p>
<ul class="skills">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>Java</li>
<li>Python</li>
</ul>
<p>- Work at a company as a Front End Web Developer building website.</p>
<p>- Graduate from UCI by next year and continue to live in Orange County.</p>
</div>
</main>
<hr>
<footer>
<ul>
<li><a href="https://www.facebook.com/matthew.choi.796" target="_blank" class="social facebook">Facebook</a></li>
<li><a href="https://www.linkedin.com/in/matthew-choi-00b753176/" target="_blank" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/mycinus" target="_blank" class="social github">Github</a></li>
</ul>
<p class="copyright">©Copyright 2019, Matthew Choi</p>
</footer>
</body>
</html>