Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Frontend Developer Portfolio</title>
</head>
<body>
<header>
<div>
<span></span>
<span>your name</span>
</div>

<nav>
<a href="#">Home</a> /
<a href="#">Projects</a> /
<a href="#">Articles</a> /
<a href="#">Contact</a>
</nav>

<section>
<h1>Frontend Developer</h1>
<p>html only with proper layout, no styling</p>
</section>
</header>

<main>
<section>
<article>
<h2>Projects</h2>
<ul>
<li>HTML Only Portfolio</li>
<li>Calculator</li>
<li>Quiz App</li>
<li>Countdown Timer</li>
<li>Product Upcoming Page</li>
</ul>
</article>

<article>
<h2>Work Experience</h2>

<div>
<h3>roadmap.sh</h3>
<p>Solved all the frontend projects</p>
<a href="#">Visit my Profile</a>
</div>

<div>
<h3>OpenSource Work</h3>
<p>Contributed to 50 opensource projects. Made my own projects with 200 GitHub Stars.</p>
<a href="#">Visit my GitHub Profile</a>
</div>
</article>

<article>
<h2>Education</h2>
<p>Graduated with 3.76 out of 4 CGPA. Won Acme Hackathon. Organized 30 sessions.</p>
<p>Courses I took:</p>
<ul>
<li>Object Oriented Programming</li>
<li>Data Structures and Algorithms</li>
<li>Web Engineering</li>
<li>Artificial Intelligence</li>
<li>Human Computer Interaction</li>
<li>Computer Graphics</li>
<li>Database Management Systems</li>
<li>Distributed Database Systems</li>
<li>Discreet Mathematics</li>
</ul>
</article>
</section>

<section>
<h2>Reviews from my Teachers</h2>

<article>
<p>John doe was a brilliant student; always stood out with his assignments.</p>
<p>Jane Doe<br />Assistant Professor</p>
</article>

<article>
<p>John doe was a brilliant student; always stood out with his assignments.</p>
<p>Jane Doe<br />Assistant Professor</p>
</article>

<article>
<p>John doe was a brilliant student; always stood out with his assignments.</p>
<p>Jane Doe<br />Assistant Professor</p>
</article>
</section>
</main>

<footer>
<p>© all rights reserved 2025</p>
</footer>
</body>
</html>