Skip to content

Commit

Permalink
assessment revision 2
Browse files Browse the repository at this point in the history
deleted unnecessary coding for footer padding in the css.
  • Loading branch information
ggalloway92 authored May 24, 2024
1 parent 4db272e commit f6511fe
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 15 deletions.
37 changes: 25 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<link href="style.css" rel="stylesheet" type="text/css">
</head>

<!-- Builds header section and links nav options to different sections of page -->

<body>
<header>
<div id="logo">
Expand All @@ -28,19 +30,21 @@ <h1>Pete Thinkful | Artist</h1>


</header>
<!-- TODO: Add header here -->


<main>
<div>

<!-- TODO: Add About section here -->

<article id="about">
<section>
<div>
<h2>About</h2>
<h3>Hi! I'm Pete Thinkful</h3>


<!-- adds image and main body text to About section -->

<img class="image-circle" src="images/pete-thinkful.png" alt="Pete Thinkful">
</div>
</section>
Expand All @@ -64,10 +68,14 @@ <h3>Pete's Background</h3>
<hr>

<!-- TODO: Add Portfolio section here -->

<article id="portfolio">
<div>
<h2>Portfolio</h2>
<h3>Abstract Red</h3>

<!-- adds images and main body text to Portfolio section -->

<img src="images/abstract-red.png" alt="Abstract Red">

</div>
Expand All @@ -87,43 +95,48 @@ <h3>Melted Rainbow</h3>

<hr>

<!-- TODO: Add Contact section here -->

</div>
</main>

<!-- Footer section -->
<div>
<!-- adds contact section to footer and establishes links to social media -->



<footer>
<article id="contact">

<article id="contact">
<div>

<h2>Contact</h2>


</div>




<p>I'd love to hear from you! Please feel free to contact or follow me:</p>


<ol>
<li><a href="https://www.linkedin.com/in/pete-thinkful/" target="_blank">LinkedIn</a></li>
<li><a href="https://instagram.com/pete.thinkful/" target="_blank">Instagram</a></li>
<li><a href="https://www.pinterest.com/pete.thinkful/" target="_blank">Pinterest</a></li>
</ol>

</article>
<br>
<br>

<div>

<div>

<p>© Pete Thinkful. All rights reserved.</p>

</div>

</article>

</footer>
</div>

</body>

</html>
2 changes: 1 addition & 1 deletion replit_zip_error_log.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file .cache/replit/modules/replit","time":"2024-05-22T20:27:19Z"}
{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file .cache/replit/modules/replit","time":"2024-05-24T04:12:57Z"}
10 changes: 8 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ body {
background-color: #eae2b7;
color: #003049;
font-family: "Source Sans Pro", Tahoma, Geneva, Verdana, sans-serif;
padding: 40px;
}

nav a{
padding: 10px;
}
Expand Down Expand Up @@ -63,3 +62,10 @@ hr {
border-width: 2px;

}

/* Centers content of footer */

footer {
margin: auto;
width: 600px;
}

0 comments on commit f6511fe

Please sign in to comment.