-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
47 lines (47 loc) · 2.3 KB
/
Copy pathabout.html
File metadata and controls
47 lines (47 loc) · 2.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Portfolio</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="rotated-rectangle3"></div>
<div class="rotated-rectangle4"></div>
<button class="menuBtn" id="menuBtn">
<span class="icon">
<svg viewBox="0 0 175 80" width="40" height="40">
<rect width="80" height="15" fill="#f0f0f0" rx="10"></rect>
<rect y="30" width="80" height="15" fill="#f0f0f0" rx="10"></rect>
<rect y="60" width="80" height="15" fill="#f0f0f0" rx="10"></rect>
</svg>
</span>
<span class="text">MENU</span>
</button>
<nav id="dropdownMenu" class="dropdown-menu">
<a href="index.html">HOME</a>
<a href="about.html">ABOUT</a>
<a href="projects.html">PROJECTS</a>
<a href="contacts.html">CONTACT</a>
</nav>
<main class="content">
<section class="hero">
<h1>About Me</h1>
<p class="hero-intro">Hi, I'm Austin Ledin. I am a 10th grade high school student
hoping to become a future software developer.</p>
<div class="hero-paragraphs-about">
<p>I have taken 1 AP class, AP Human Geography, and scored a 5 on the exam.
I am currently taking AP US History but opted out of the exam.
I plan to take AP Pre-Calculus, AP Calculus AB, AP Physics, AP Computer Science A,
and potentially AP Macroeconomics and AP Microeconomics.</p>
<p>I am currently a part of my school's high school varsity soccer team with 2 letters.
I am a programming student at the 930 Mukwanago Bears FRC team,
and I am a one time qualifier to the NASA HUNCH FDR in Houston</p>
<p>I am currently looking at applying to MIT, MTU,
and using the direct admit platform to get into colleges like UW-Plateville
with the major of Software Engineering.</p>
</div>
</section>
</main>
</body>
</html>