-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio_new.html
54 lines (48 loc) · 2.42 KB
/
portfolio_new.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | Yunting Zhao</title>
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<main>
<!-- About Section -->
<section class="about active" data-page="about">
<header>
<h2 class="h2 article-title">Creative Design Portfolio</h2>
</header>
<section class="about-text">
<p>Hi, I’m Yunting Zhao, a designer, developer, and watercolor enthusiast! Below are some selected works from my portfolio.</p>
</section>
</section>
<!-- Portfolio Projects -->
<section class="projects">
<div class="recent-project-image-wrapper">
<h3>Project 1: Cluckin Lucky</h3>
<img src="assets/images/projects/cluckin-lucky.gif" alt="Cluckin Lucky Project" class="recent-project-image">
<p class="recent-project-caption">Product Design for Local Restaurants: Augmented Reality Experience</p>
</div>
<div class="recent-project-image-wrapper">
<h3>Project 2: SunWATER Plus</h3>
<img src="assets/images/projects/sunwater-plus.jpg" alt="SunWATER Plus Project" class="recent-project-image">
<p class="recent-project-caption">NSF-Funded Greywater Recycling System for Hotels and Residences</p>
</div>
<div class="recent-project-image-wrapper">
<h3>Project 3: NASA SUITS Creative Design Challenge</h3>
<img src="assets/images/projects/nasa-suits.jpg" alt="NASA SUITS Project" class="recent-project-image">
<p class="recent-project-caption">AR UI Interface for NASA Astronauts: Rover Tracking and Voice Control</p>
</div>
<div class="recent-project-image-wrapper">
<h3>Project 4: Physical Computing</h3>
<img src="assets/images/projects/physical-computing.jpg" alt="Physical Computing Project" class="recent-project-image">
<p class="recent-project-caption">Laser Wind Chime: Photon Particles and Time-of-Flight Sensors</p>
</div>
</section>
<footer>
<p>For more information, visit <a href="https://yuntingzhao.com/">my website</a>.</p>
</footer>
</main>
</body>
</html>