-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (28 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>First Website!</title>
<link rel="stylesheet" href="./resources/template.css">
<link rel="stylesheet" href="./resources/style.css">
<script src="./resources/template.js" defer></script>
</head>
<body>
<div class="main-container">
<main-header></main-header>
<div class="body-section">
<img src="./resources/headshot.png" alt="Headshot">
<div>
<p>Hello! My name is Williams Chen. Feel free to look around this site!</p>
<br>
<p>I am currently a freshmen in RPI studying Computer Science. Some of my hobbies are playing tetris, solving rubrik's cube, and coding.</p>
<br>
<p>Some of the activities that I partipate in is student government, RPISEC, Coding&&Community, and I am leading my own ROCS Project. </p>
<br>
<p>Some of the current classes I'm taking is FOCS, Comp Org, Intro to ITWS, IT&Society, and RCOS.</p>
</div>
</div>
<main-footer></main-footer>
</div>
</body>
</html>