-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Paper - Whit #47
base: master
Are you sure you want to change the base?
Paper - Whit #47
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: You do NOT need a venv
for an HTML project...
As you mentioned, the site is unfinished, but the layout looks nice and it hits most requirements. I made a few comments in the code, but it's overall pretty well written with clear CSS and readable HTML.
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Empty title
about.html
Outdated
<a class="current-page" href="./about.html">About</a></li> | ||
<a href="./portfolio.html">Portfolio</a></li> | ||
<a href="./blog.html">Essays</a></li> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You have close li
tags, but no ul
and no open li
tags. You should have an ul
or something as well as li
start tags.
blog.html
Outdated
<nav class="navbar"> | ||
<a class="current-page" href="./about.html">About</a></li> | ||
<a href="./portfolio.html">Portfolio</a></li> | ||
<a href="./blog.html">Essays</a></li> | ||
</nav> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar issues to the about page
.
index.html
Outdated
<article class="card"> | ||
<img src="./images/video_store.jpg" alt="A storefront sign that says 'VIDEO'." /> | ||
<!-- <section class="card_text"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a note, that these images really squish down when the screen size is small.
progress is ongoing