-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
56 lines (47 loc) · 2.72 KB
/
Copy pathabout.html
File metadata and controls
56 lines (47 loc) · 2.72 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
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main data-testid="test-about-page">
<h1>About page</h1>
<header>
<nav class="breadcrumbs" aria-label="Breadcrumb">
<a href="index.html">Home</a>
<span class="separator">›</span>
<a href="about.html" class="current">About</a>
</nav>
</header>
<section class="bio" data-testid="test-about-bio">
<h2>Bio</h2>
<p>I am a creative tech enthusiast and web developer who loves turning ideas into sleek, user-friendly digital experiences. She’s passionate about blending design and functionality to bring projects to life with style and purpose.</p>
</section>
<section data-testid="test-about-goals">
<h2>Goals in this program</h2>
<ul>
<li>Enhance my web development skills through hands-on projects.</li>
<li>Collaborate with other talented developers to learn best practices.</li>
<li>Build a strong portfolio that showcases my abilities.</li>
<li>Gain confidence in tackling complex coding challenges.</li>
<li>Expand my professional network within the tech community.</li>
</ul>
</section>
<section data-testid="test-about-confidence">
<h2>Areas of low confidence</h2>
<p>I sometimes struggle with staying confident when working on complex or unfamiliar coding tasks. I tend to overthink my solutions or worry about making mistakes. However, I’m actively working on improving this by practicing consistently, asking for feedback, and learning from challenges instead of avoiding them.</p>
</section>
<section data-testid="test-about-future-note">
<h2>Note to future self</h2>
<p>I’m excited to keep learning, building, and improving every step of the way. The goal is to look back and see how far I’ve grown — from figuring things out line by line to confidently creating solutions that make an impact. The future is tech, and I’m here for it. 🚀</p>
</section>
<section data-testid="test-about-extra">
<h2>Extra thoughts</h2>
<p>I’m really enjoying this learning journey and the opportunity to connect with other creative minds in tech. Every challenge teaches me something new, and I’m learning to trust the process more each day. I believe growth happens when you step outside your comfort zone — and I’m ready to keep doing just that. 🌱</p>
</section>
</main>
</body>
</html>