-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
116 lines (109 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BPCQYBK1F2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-BPCQYBK1F2');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Roy Wang's Personal Site</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #356cb5;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #222;
padding: 10px;
text-align: center;
}
nav a {
color: white;
padding: 10px 15px;
text-decoration: none;
font-size: 18px;
}
nav a:hover {
background-color: #555;
}
#content {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
}
.project-box, .responsibilities-box {
background-color: white;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin: 10px;
width: 80%;
}
footer {
background-color: #222;
color: white;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<header>
<h1>Roy Wang's Personal Site</h1>
</header>
<nav>
<a href="index.html">Home</a>
<a href="html/blog.html">Blog</a>
<a href="html/about.html">About</a>
<a href="html/contact.html">Contact</a>
<a href="html/mcat.html">MCAT Practice Exam</a>
</nav>
<div id="content">
<div class="project-box">
<h2>Personal Site</h2>
<p>Welcome to my personal site!</p>
</div>
<div class="responsibilities-box">
<!--
<h2>Responsibilities</h2>
<ul>
<li>Design, develop, deploy, monitor, operate and maintain existing or new elements of our Rider application</li>
<li>Help establish roadmap and architecture based on technology and our needs</li>
<li>Write well-crafted, well-tested, readable, maintainable code</li>
<li>Analyze our internal systems and processes and locate areas for improvement/automation</li>
<li>Collaborate with product org stakeholders to execute on projects</li>
<li>Provide thoughtful code reviews to ensure code quality and distribute knowledge</li>
<li>Share your knowledge by giving brown bags, tech talks, and promoting appropriate tech and engineering best practices</li>
<li>Lead features from idea to successful execution</li>
<li>Unblock, support and communicate with internal partners to achieve results</li>
<li>The work responsibilities of this role are expected to take place during business hours in your local Time Zone in the United States.</li>
</ul>-->
<h2>Experience</h2>
<ul>
<li>2 years of software engineering industry experience</li>
<li>Adept at Java, Python, C++, Javascript, CSS, and HTML</li>
<!-- <li>Experience with Jetpack Compose, declarative UI development, and creating shared components</li> -->
<!-- <li>Familiarity with current design and prototyping tools (Figma, etc).</li>
<li>Experience with architecture paradigms like unidirectional and reactive programming</li> -->
<li>Ability to work with a low-ego, highly collaborative, and cross-functional team</li>
</ul>
</div>
</div>
<footer>
<p>© 2024 Roy Wang</p>
</footer>
</body>
</html>