-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
23 lines (23 loc) · 962 Bytes
/
about.html
File metadata and controls
23 lines (23 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<section id="about" class="about-section">
<div class="about-container">
<div class="about-text">
<h2>About Me</h2>
<p>I am a first-year student studying computer science at Carnegie Mellon. I am passionate about quantum computers, stocks,
and artificial intelligence. I am a part of SDC Buggy, the Tepper Undergraduate Real Estate Club, and CMU Pickleball Club.
In my free time, I enjoy fencing, producing music, and playing soccer.</p>
</div>
<div class="about-image">
<img src="images/myphoto.jpg" alt="Marcus Wu">
</div>
</div>
</section>
</body>