Skip to content

Commit

Permalink
add portfolio.html file
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey008 committed Nov 21, 2024
1 parent 18d781e commit 1660ca2
Show file tree
Hide file tree
Showing 3 changed files with 76 additions and 40 deletions.
77 changes: 38 additions & 39 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,42 @@
<!DOCTYPE HTML>
<!DOCTYPE html>
<html>
<head>
<title>Coreys First Website</title>
</head>
<link rel="stylesheet" href="style.css">
<body>
<!-- All content goes here -->

<div. id="all contents">
<nav>
<h1>Coreys Amazing Website</h1>
<head>
<title>Coreys First Website</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- All content goes here -->

<div id="all contents">
<nav>
<h1>Coreys Amazing Website</h1>
<ul id="nav-ul">
<li class="nav-li"><a href="index.html">Home</a></li>
<li class="nav-li"><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
<main>
<!-- Sidebar section -->
<div class="sidebar">
<img class="sidebar-img"
src="https://cdn.motor1.com/images/mgl/9o9ly/s3/2020-audi-rs7-sportback.webp"
alt=""
/>
</div>
<!-- Content section -->
<div class="content
<h2>Corey Boissiere</h2>
<p>St Augustine High School</p>
<!-- Interests section -->
</div id="interests>
<h3>Interests</h3>
<ul>
<li><a href="Home">Home</a></li>
<li><a href="Portfolio">Portfolio</a></li>
<li>Cars</li>
<li>music</li>
<li>Clothes</li>
<li>Shoes</li>
</ul>
</nav>
<main>
<!-- Sidebar section -->
<div>
<img src="https://cdn.motor1.com/images/mgl/9o9ly/s3/2020-audi-rs7-sportback.webp" alt="">
</div>
<!-- Content section -->
<div>
<h2>Corey Boissiere</h2>
<p>St Augustine High School</p>
<!-- Interests section -->
</div>
<h3>Interests</h3>
<ul> </ul>

<li>Cars</li>
<li>music</li>
<li>Clothes</li>
<li>Shoes</li>
<ul></ul>
<div>
</div>
</main>
</div>
</body>
</main>
</div>
</body>
</html>

36 changes: 36 additions & 0 deletions portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE HTML>
<html>
<html>
<head>
<title>Coreys Amazing Website</title>
</head link rel="stylesheet" href="style.css">

<body>
<div id="all-contents">
<div id="all-contents">
<nav>
<h1>Coreys Glorious Website</h1>
<ul id="nav-ul">
<li class="nav-li">
<a class="nav-a" href="index.html">Home</a>
</li>
<li class="nav-li">
<a class="nav-a" href="portfolio.html">Portfolio</a>
</li>
</ul>
</nav>

<main>
<div class="content">
<h1>Portfolio</h1>
<ul id="portfolio">
<li><a href="projects/platformer/">Platformer : A cannon - dodging, collectible - grabbing adventure game for Halleb0t</a></li>
<li><a href="projects/bouncing-box/">Bouncing Box : A project that gives you a taste of game development on the web </a></li>
<li><a href="projects/circularity/">Circularity : A motion poem using random number generation and velocity applied to circle shapes...</a></li>
</ul>
</div>
</main>

</body>

</html>
3 changes: 2 additions & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ body {
/* navigation menu */
nav {
background: rgb(239, 80, 41);
margin: 0 auto;
margin: 0 auto;
margin-bottom: 20px;
display: flex;
padding: 10px;
}
Expand Down

0 comments on commit 1660ca2

Please sign in to comment.