-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (65 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aaron Duong</title>
<link rel="stylesheet" href="main.css" >
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Prompt&display=swap');
</style>
<body>
<section>
<nav>
<div class="nav-left">
<a href="index.html">Aaron Duong</a>
</div>
<div class="nav-right">
<a href="#about-box">About</a>
<a href="#experience-section">Experience</a>
<a href="#">Photography</a>
</div>
</nav>
<div class="welcome-box">
<div class="welcome-text">
<p>
Welcome!</p>
</div>
</div>
</div>
<footer>
<a href="https://github.com/duongaaron">GitHub</a>
<a href="https://www.linkedin.com/in/duongaaron/">LinkedIn</a>
</footer>
</section>
<section>
<div class="about-box">
<p class = "indent"> Hello! My name is Aaron Duong.</p>
<p class = "indent"> I am a current sophomore at <em>Rice University</em> studying <em>Computer Science</em> and <em>Business</em> with
an interest in <em>Psychology</em>.</p>
<p class = "indent">
I am interested in software engineering, full-stack
software development, and machine learning!</p>
</div>
<div class="about-heading">
<p>About</p>
</div>
</section>
<section class = "experience">
<div class="experience-box">
<p class = "experience-bullets">Software Developer Intern @ <br>
<em>Rice Apps</em></p>
<p class = "experience-bullets"> Machine Learning Researcher @ <br>
<em>Rice University</em></p>
<p class = "experience-bullets">Machine Learning Reseracher @ <br>
<em>UT Health</em></p>
</div>
<div class="experience-heading">
<p>Experience</p>
</div>
</section>
</div>
</div>
</body>
</html>