-
Notifications
You must be signed in to change notification settings - Fork 155
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
Lions - Jessica A #104
base: master
Are you sure you want to change the base?
Lions - Jessica A #104
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.
Personal Portfolio Site
What We're Looking For
Feature | Feedback |
---|---|
Baseline | |
Appropriate Git Usage | ✅ |
Answered comprehension questions | ✅ |
Page fully loads | ✅ |
No broken links (regular or images) | 😞 |
Includes at least 3 pages and styling | ✅ |
HTML | |
Uses the high-level tags for organization: header, footer, main |
Mostly. The index.html page does not have any |
Appropriately using semantic tags: section, article , etc. |
Mostly. The index.html page only uses div |
All images include alternate text | ✅ |
CSS | |
Using class and ID names in style declarations | 😞 Only has class, does not use ID |
Style declarations are DRY | ✅ |
Uses Flexbox and/or Grid | ✅ |
Overall | ✅ |
<link href="style.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<header> |
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.
This header
tag does not have a corresponding closing tag.
<div class="grid-container"> | ||
<div class="item1"><h1>Jessica Edith Ambriz-Madrigal </h1></div> | ||
<div class="item2"> | ||
<div><p><a href="file:///Users/jessicaambriz-madrigal/Developer/projects/personal-portfolio-site/pages/index.html"> Home </a></p></div> |
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.
Be careful with your links! This is looking for a specific file on your computer. These links do not work if other people are trying to open your webpage. Instead, you should use relative paths.
Here is a great resource on absolute vs relative paths: https://www.geeksforgeeks.org/absolute-relative-pathnames-unix/
This applies to image URLs as well.
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions
Did you have to resolve any issues when running the HTML Validator? If so, what were they? |
Yes, I had multiple happen at different times and tried my best to have an error-free HTML. Usually, I would forget a > or < or add a type of heading that is not allowed in the footer.
:------------- | :-------------
Why is it important to consider and use semantic HTML? |
So the website can look clean and the user can understand and want to look at the information at hand.
:------------- | :-------------
How did you decide to structure your CSS? |
I drew out first what kind of design I was looking for.
:------------- | :-------------
What was the most challenging piece of this assignment? |
I think the way CSS was not always doing what I wanted it to do, or getting the grid to be ending on the sides of the page.
:------------- | :-------------
Describe one area that you gained more clarity on when completing this assignment |
I think provided more insight into how disconnected the background and the content is. Realizing how actually more intricate web development is.
:------------- | :-------------