-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (91 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kevin Yu</title>
<link href="images/favicon.ico" rel="icon">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Edu+SA+Beginner&display=swap" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JF3MKT4MEP"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-JF3MKT4MEP');
</script>
</head>
<body>
<header>
<h1>Kevin Yu's Personal Portfolio</h1>
</header>
<section title="nav" id="nav_bar">
<h2>Nav Bar:</h2>
<nav>
<a href="nativedialogs.html">Nativedialogs page</a> <span class="seperater"> | </span>
<a href="crud.html">Post CRUD page</a> <span class="seperater"> | </span>
<a href="styledcrud.html">Styled CRUD page</a> <span class="seperater"> | </span>
<a href="methodtest.html">Method Test page</a> <span class="seperater"> | </span>
<a href="webcomponent.html">Webcomponent page</a>
</nav>
</section>
<br>
<main>
<div>
<section title="name">
<h2><strong>Kevin Yu</strong></h2>
<img src="images/self.jpg" alt="Image of Myself" width="250" height="600">
</section>
</div>
<div id="right-column">
<section title="about">
<h2>About Me</h2>
<p>Name: Kevin Yu</p>
<p>Age: 22</p>
<p>Location: University of California San Diego</p>
<p>Major: Computer Science</p>
<p>Status: Single</p>
</section>
<section title="background">
<h2>Background</h2>
<p>Hi, my name is Kevin Yu and I am a senior in UCSD.
I was born in China and I could speak four languages.</p>
<details>
<summary>More detail!</summary>
<p>My family members have recently added two cats!</p>
</details>
</section>
<section title="hobbies">
<h2>Hobbies</h2>
<ul>
<li>Cooking: I am a home cook, feel free to share recipes with me!</li>
<li>Coding: I am learning web dev, it would be great to study together.</li>
<li>Gaming: I like to play single-player games, but mult-player is also ok!</li>
<li>Running: I like to running and playing sports.</li>
</ul>
</section>
<section title="goals">
<h2>Goals</h2>
<ol>
<li>To graduate at UCSD in this summer.</li>
<li>To improve my communication skill and make friends.</li>
<li>To get a good career and pay my student loan.</li>
<li>To develop a running habit for good health.</li>
</ol>
</section>
<section title="contact">
<h2>Contact Me</h2>
<ul>
<li>Email: kevin32yu@gmail.edu</li>
<li>LinkedIn: https://www.linkedin.com/in/kevin-32-yu/ </li>
</ul>
</section>
</div>
</main>
<footer>
This website is created by <em>Kevin Yu</em>.
</footer>
</body>
</html>