-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (70 loc) · 3.02 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
<!DOCTYPE html>
<html>
<head>
<title>Micah Lin- Aspiring Software Engineer</title>
<link rel="stylesheet" href="styles.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=Archivo:ital,wght@0,100..900;1,100..900&family=Geist+Mono:[email protected]&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- <div class="navbar">
<div class="navbar__about">About</div>
<div class="navbar__projects">Projects</div>
<div class="navbar__contact">Contact Me</div>
</div> -->
<header class="header">
<div class="header__name" id="name"></div>
<div class="header__desc1" id="desc-1"></div>
<div class="header__desc2" id="desc-2"></div>
<div class="btn btn__scroll--white" id="btn__scroll--white">Profile</div>
</header>
<h2 class="heading__about">About Me</h2>
<div class="container__about">
<p>
My name is Micah Lin. I am a Texas native and have been my whole life. I
am a United States Marine Corps Reservist and B.S. Computer Science
student looking to break into the software engineering industry. I
currently code in C, C++, Java, and a bit of Angular and SQL. I love to
do both embedded and web related projects. Some of my hobbies include
working out, video games, reading about operating systems, piano, and
studying the Bible.
</p>
<div>
<img src="assets/me-1.jpg" />
</div>
</div>
<h2 class="heading__goals">My Goals</h2>
<div class="container__goals">
<p>
I have a passion for any type of software engineering. Whether it be
tinkering with microcontrollers or studying Operating Systems to
designing the CSS on Angular components, I strive to become a better
software engineer everyday. I would love any opportunity to gain
experience in the software engineering world and showcase my skills.
</p>
</div>
<div class="container__work">
<div class="container__work--box1">My Work</div>
<div class="container__work--box2"></div>
<div class="container__work--angular">
<h2>Angular</h2>
<p>
I've recently worked on mock community college database application
where students, courses, and professors are all relationally mapped
together. I used MariaDB to create all the tables and then used Java
Spring to push REST API endpoints using JPARespository. Lastly, I used
Angular to create a frontend, access such endpoints and display the
data accordingly.
</p>
</div>
<div class="container__work--angularbg"></div>
<img id="angular-logo" src="assets/angular-logo.png" />
<img id="angular-college-img" src="assets/angular-3.jpg" />
</div>
<script src="script.js"></script>
</body>
</html>