-
Notifications
You must be signed in to change notification settings - Fork 42
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
&& Brittany Jones Ampers #30
base: master
Are you sure you want to change the base?
Conversation
Personal Portfolio SiteWhat We're Looking For
|
<div> | ||
<nav class="nav"> | ||
<ul class="navigation-list"> | ||
<li><a href="/Users/brittanyjones/desktop/Adaprojects/personal-portfolio-site/portfolio-html/portfoliohome.html">Home</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're using absolute links which only work on your computer. You need to use links relative to the file you're linking from. In this case you should do:
<li><a href="portfoliohome.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<nav class="foot"> | ||
<ul class="footer-list"> | ||
<li><a href="mailto:[email protected]?subject=portfolio">Email Me</a></li> | ||
<li><a href="https://www.linkedin.com/in/brittany-jones-242730146/">Linkdn</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.
spelling
</head> | ||
|
||
<body> | ||
<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.
You should use semantic HTML tags whenever possible and avoid div
elements.
@@ -0,0 +1,55 @@ | |||
<!DOCTYPE html> |
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.
A note: It's traditional to name the homepage for an HTML site index.html
and to put it in the root folder of the project. Try to follow convention, unless you have a reason not to.
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions