-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
60 lines (53 loc) · 2.89 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - Rongxue Jiang</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li> <!-- Link to Home Page -->
<li><a href="about.html">About</a></li> <!-- Link to About Page -->
<li><a href="contact.html">Contact</a></li> <!-- Link to Contact Page -->
</ul>
</nav>
<section class="intro-section">
<div class="intro-text">
<h2>Hi! I’m Roxy</h2>
<p>I am a UX designer based in Toronto with a passion for solving complex problems through elegant design solutions. I focus on creating user-centered experiences and collaborating with diverse teams to deliver impactful projects.</p>
<p>With a strong background in UX research and design, I thrive in environments where innovation and user experience intersect. I believe that empathy, collaboration, and curiosity are key to delivering designs that truly resonate with users.</p>
</div>
<div class="intro-image">
<img src="IMG_7857.jpeg" alt="Rongxue Jiang's Photo">
</div>
</section>
<section class="skills-section">
<h2>Skills</h2>
<ul class="skills-list">
<li><strong>User Research:</strong> Understanding user needs, behaviors, and goals through research methods like surveys and interviews.</li>
<li><strong>Wireframing and Prototyping:</strong> Creating wireframes and interactive prototypes to visualize user flows.</li>
<li><strong>Visual Design:</strong> Knowledge of color theory, typography, and layout.</li>
<li><strong>User Testing:</strong> Testing designs with real users to identify pain points.</li>
<li><strong>Design Tools:</strong> Proficiency in tools like Sketch, Figma, Adobe XD, or InVision.</li>
<li><strong>Information Architecture:</strong> Structuring content in a user-friendly way.</li>
<li><strong>Collaboration:</strong> Working closely with developers, product managers, and stakeholders.</li>
<li><strong>Problem-Solving:</strong> Addressing design challenges and creating intuitive solutions.</li>
</ul>
</section>
<section class="recommended-books">
<h2>Book Lists</h2>
<ul>
<li><strong>Don't Make Me Think</strong> by Steve Krug</li>
<li><strong>The Design of Everyday Things</strong> by Don Norman</li>
<li><strong>Lean UX: Applying Lean Principles to Improve User Experience</strong> by Jeff Gothelf and Josh Seiden</li>
</ul>
</section>
<footer>
<a href="https://www.linkedin.com/in/rongxuejiang/" target="_blank">LinkedIn</a>
<p>© Rongxue Jiang</p>
</footer>
</body>
</html>