Skip to content
Open
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
62 changes: 52 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,72 @@
<body>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>

<h1>Welcome To Ironhacker's Page</h1>
<header id="home">
<h1>Welcome To Ironhacker's Page</h1>
<p>A small portfolio page for practicing HTML, Git, and GitHub.</p>
</header>

<section id="about">
<h2>About Me</h2>
<p>
I am learning how to build web pages, organize code, and collaborate with GitHub.
This page is a place to practice and show a little bit about myself.
</p>
</section>

<section>
<h2>Things I Like</h2>
<ul>
<li>Fill</li>
<li>This</li>
<li>In</li>
<li>Bible</li>
<li>Family</li>
<li>Church</li>
</ul>
</section>

<section>
<h2>Things I Don't Like</h2>
<ul>
<li>Fill</li>
<li>This</li>
<li>In</li>
<li>Loading screens</li>
<li>A wifi not working</li>
<li>A bad cup of coffee</li>
</ul>
</section>

<section id="projects">
<h2>Projects</h2>
<article>
<h3>Portfolio Page</h3>
<p>A simple HTML page that introduces me and shows what I am learning.</p>
</article>
<article>
<h3>GitHub Practice</h3>
<p>A practice project for creating commits, branches, and pull requests.</p>
</article>
</section>

<section id="skills">
<h2>Skills I Am Building</h2>
<ul>
<li>Writing semantic HTML</li>
<li>Using Git from the command line</li>
<li>Publishing projects with GitHub</li>
</ul>
</section>

<section id="contact">
<h2>Contact</h2>
<p>
Want to connect? Send me an email at
<a href="mailto:ironhacker@example.com">ironhacker@example.com</a>.
</p>
</section>
</body>
</html>