LINK TO REPO: https://github.com/jaekerrclayton/personal-portfolio-site.git
It is common for developers to create a website to show off their web-dev skills and document their work and interests. These sites often feature things like:
We will use HTML & CSS to create a static site whose content is our personal portfolio. Our personal portfolio site should contain information about ourselves and the coding work we’ve done.
We should only use static HTML and CSS for this project. Preprocessors (haml, erb, sass, less, etc.) and Javascript of any kind are not allowed. All submitted HTML needs to pass as valid HTML through an HTML Validator.
This portfolio site must have the following HTML files:
index.html must include your name somewhere.
about.html should include some information about you, your interests, background or similar. Only post what you are comfortable sharing.
portfolio.html must include information about several projects you have completed at Ada (or elsewhere) with links to the GitHub repo (if available), descriptions, images, etc.
Each page in this project must comply with the following layout requirements:
<header>, <footer>, and <nav><nav>, there are links to all of the other pagesstyle.css)Present the elements on the page as you see fit by using the following at least once:
Both of these containers do not need to be on the same page. Try using one for one page, and the other for another page!
</br>
The site should follow best practices, including:
images and stylesheets, respectivelyblog/ or code-journal/ directory. Within this directory…
html file for each entry in your blog/journalimg, link, a tags) to accommodate for the entries being in a different directory.A lot of developers find their initial foray into CSS frustrating. Every browser implements the CSS standard a little (or a lot) differently. Learning to manipulate elements and understand the box model takes time. Layout can be especially challenging to developers new to CSS. For this project, focus on understanding the mechanics and semantics of HTML and CSS, and how the two work together.
Want more? Make your site live on the internet! There are a lot of ways to go about hosting a live website, but GitHub provides a way to host static sites for free using your GitHub account. Follow the steps listed here.