Skip to content
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-devin-personal-portfolio #107

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

devintaylor122
Copy link

Personal Portfolio Site

Congratulations! You're submitting your assignment!

Comprehension Questions

Question Answer
Did you have to resolve any issues when running the HTML Validator? If so, what were they?
      Yes. I had a backslash at the end of the line for the link to my stylesheet and it gave me an error so I removed t.

Why is it important to consider and use semantic HTML? |
It helps make your file more clear and easy to understand
How did you decide to structure your CSS? |
I organized it by the order that elements show up in the html files.
What was the most challenging piece of this assignment? |
I wasn't able to get my css to interact with my html. I am not getting any errors and all files are valid.
Describe one area that you gained more clarity on when completing this assignment |
I gained some more clarity on semantic html
Optional |
Did you deploy to GitHub Pages? If so, what is the URL to your website? |

Copy link

@nancy-harris nancy-harris left a 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) Almost!
Includes at least 3 pages and styling
HTML
Uses the high-level tags for organization: header, footer, main
Appropriately using semantic tags: section, article, etc.
All images include alternate text 🤷‍♀️
CSS
Using class and ID names in style declarations 😞 Uses class, but not ID
Style declarations are DRY
Uses Flexbox and/or Grid
Overall

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="/stylesheets/style.css" rel="stylesheet">

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Careful with your file paths! The /stylesheets/style.css path does not actually work because it is an incorrect absolute path. Starting a path with a slash (/) will start the file search at the root directory of your entire file system (not your project).
To correct this, we can use a relative path instead. This will provide directions to the target file based on the current file's location.
In code this looks like: ./stylesheets/style.css. The dot at the beginning signals to start searching in the current directory.
Here is a great resource on absolute vs relative paths: https://www.geeksforgeeks.org/absolute-relative-pathnames-unix/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants