-
Notifications
You must be signed in to change notification settings - Fork 47
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
Shelan's portfolio #21
base: master
Are you sure you want to change the base?
Conversation
Personal Portfolio SiteWhat We're Looking For
|
@@ -0,0 +1,33 @@ | |||
<!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.
Did you export this file from a 3rd party program? Why is (port)
in the filename.
@@ -0,0 +1,21 @@ | |||
<section class="blogs"> |
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: This file isn't valid HTML.
<body> | ||
|
||
<section class="header"> | ||
<li><a href="portfolio.html">portfolio.</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.
li
elements must be children of ul
or ol
elements.
<footer> | ||
<ul class="footer"> | ||
<li>© 2018-</li> | ||
<li>contact information: shelandebesai@gmail.com <a href="shelandebesai@gmail.com"> |
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 li
element isn't closed.
Also the a
element isn't closed
<body class="container"> | ||
|
||
<section class="header"> | ||
<li><a href="portfolio.html">portfolio.</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.
Also li
can't be a child of section
, it can only be a child element of ul
or ol
.
color:#eee; | ||
} | ||
|
||
.background:before{ |
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.
Nice parallax effect.
background-image: url("https://i.imgur.com/LSpa1mM.jpg"); | ||
} | ||
|
||
.container { |
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.
Notice you have the this style repeated in multiple files. Not exactly DRY.
grid-template-rows: 1fr 1fr 4fr 1fr | ||
} | ||
|
||
.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.
You also have a lot of these styles repeated in multiple files
} | ||
|
||
body { | ||
background-image: url("https://i.imgur.com/LSpa1mM.jpg"); |
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.
in CSS you use single quotes, not double.
*/ | ||
|
||
button, | ||
[type="button"], |
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.
In CSS use single quotes, not double quotes.
Personal Portfolio Site
Congratulations! You're submitting your assignment!
Comprehension Questions