-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (62 loc) · 1.76 KB
/
about.html
File metadata and controls
73 lines (62 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About | Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<div class="logo">Sneha</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
<section class="page-hero">
<h1>About Me</h1>
<p>My journey, education and experience</p>
</section>
<section class="section">
<h2 class="section-title">Who I Am</h2>
<p class="section-text">
I am a frontend web learner passionate about clean and modern UI design.
I enjoy building professional websites using HTML and CSS.
</p>
</section>
<section class="section dark">
<h2 class="section-title">My Journey</h2>
<div class="timeline">
<div class="timeline-item">
<h3>Started Web Development</h3>
<span>2024</span>
<p>Learned HTML and CSS fundamentals.</p>
</div>
<div class="timeline-item">
<h3>Built Portfolio Websites</h3>
<span>2025</span>
<p>Created multiple personal and practice projects.</p>
</div>
</div>
</section>
<section class="section">
<h2 class="section-title">Experience</h2>
<div class="cards">
<div class="card">
<h3>Frontend Practice</h3>
<p>Worked on multiple UI layouts and responsive designs.</p>
</div>
<div class="card">
<h3>Personal Projects</h3>
<p>Designed portfolio and landing pages.</p>
</div>
</div>
</section>
<footer class="footer">
<p class="footer-copy">© 2026 Sneha</p>
</footer>
</body>
</html>