candifloss_site/html/about.html
candifloss 201fb0335c Update: About Page draft
- Better design
- Better scrolling
2025-05-26 06:42:18 +05:30

56 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shaheem - Portfolio</title>
<link rel="stylesheet" href="../css/about.css" />
</head>
<body>
<main>
<section class="section intro" id="intro">
<div class="content">
<h1>Hello, I'm Shaheem</h1>
<p>I like building cool stuff and learning new things.</p>
</div>
</section>
<section class="section" id="about">
<div class="content">
<h2>About Me</h2>
<p>A short, informal overview about who you are and what you enjoy doing.</p>
</div>
</section>
<section class="section" id="skills">
<div class="content">
<h2>Skills</h2>
<ul>
<li>Web development</li>
<li>Linux & system tinkering</li>
<li>Rust, Python, Bash</li>
<li>Designing interfaces, ricing desktops</li>
</ul>
</div>
</section>
<section class="section" id="projects">
<div class="content">
<h2>Projects</h2>
<p>A few interesting things I\u2019ve made or contributed to.</p>
</div>
</section>
<section class="section" id="contact">
<div class="content">
<h2>Contact</h2>
<p>Email: you@example.com<br />Mastodon / GitHub / etc.</p>
</div>
<footer>
<p>&copy; 2025 Your Name</p>
</footer>
</section>
</main>
</body>
</html>