candifloss_site/html/about.html
candifloss b3d6a2d202 Update: Intro section layout
Set: Image position and size
Set: Font size and text position
2025-05-27 15:42:59 +05:30

65 lines
1.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>MyName - Portfolio</title>
<link rel="stylesheet" href="../css/about.css" />
</head>
<body>
<main>
<section class="section intro section1" id="intro">
<div class="content">
<div class="portrait">
<img src="../img/me.jpg" alt="A stylized portrait" />
</div>
<h1>
Hello, I'm <span class="myname">[My Name]</span>
</h1>
<p>
<span class="tagline">Code Wizard. </span>
<span class="tagline">Terminal Fanatic. </span>
<span class="tagline">Amateur Artist. <span class="cursor">_</span></span>
</p>
</div>
</section>
<section class="section section2" 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 section3" 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 section4" id="projects">
<div class="content">
<h2>Projects</h2>
<p>A few interesting things I've made or contributed to.</p>
</div>
</section>
<section class="section section5" id="contact">
<div class="content">
<h2>Contact</h2>
<p>Email: you@example.com<br />Mastodon / GitHub / etc.</p>
</div>
<footer>
<p>&copy; 2024 candifloss.cc. All rights reserved.</p>
</footer>
</section>
</main>
</body>
</html>