-
Notifications
You must be signed in to change notification settings - Fork 36
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
Queues - Erica J. Case - Static-Site #24
base: master
Are you sure you want to change the base?
Conversation
Static SiteWhat We're Looking For
|
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.
Hi Erica!
Overall, Great job! You'll notice that I added a lot of comments that are 'nit-picky'. Most of them are in regards to typos/spacing. While spacing doesn't affect the outcome of your code, it's a stylistic thing that will get noted in industry code reviews. Also, for many of the spacing instances, I only commented on the first or second time it happened, but you may want to scan your code to note where other occurrences are.
You did an excellent job of using semantic tagging. Your layout was neat and tidy, very easy to read. It's clear you put a lot of work into this!
<h2 class="left">Ecologist</h2> | ||
<ul class="left"> | ||
<li class=>Plant community dynamics</li> | ||
<li >Invasive species</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.
line 33: nit - Extra space and comma after li's.
</head> | ||
<body> | ||
<header> | ||
<h2><i class="material-icons" style="font-size:36px">home</i></h2> |
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.
line 15: Best practice to keep as much of your styling in you css sheet.
<title>Portfolio Project</title> | ||
<link rel="styles/normalize.css" href="icono.min.css"> | ||
<link rel="stylesheet" href="styles/main.css"> | ||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> |
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.
line 8: nitpick - It's nice to have all your links in the same general format. rel then href on each
<li>Rare species conservation</li> | ||
</ul> | ||
</div> | ||
<i id = "recycle" class="fa fa-recycle"></i> |
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.
line37: What is this line for?
nit - id="recycle" remove extra spaces
</ul> | ||
</div> | ||
<i id = "recycle" class="fa fa-recycle"></i> | ||
<div, id="Programmer"> |
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.
line 38: , instead of >
<li >Invasive species</li,> | ||
<li>Rare species conservation</li> | ||
</ul> | ||
</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.
line 34-36: Check your indentation.
<header> | ||
<a href="index.html" class="home"> <i class="fa"></i></a></li> | ||
<h1 class="erica">Erica Case: PROJECTS</h1> | ||
<a href="projects.html" class="portfolio"> <i class="fa"></i></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.
line 14: nit - extra space after <a
line 14 and 16: nit - no space needed between the a tag and the i tag
|
||
<footer> | ||
<a href="blog.html" class="blog"> <i class="fa"></i></a></li> | ||
<a href="me.html" class="me" > <i class="fa" ></i></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.
line 69-70: These font awesome things are really cool! Nice find!
</main> | ||
|
||
|
||
|
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.
No need to leave more than one extra line in between.
<h3>Ruby Code</h3> | ||
<aside> | ||
<h4>Development</h4> | ||
<i class="fa"> </i> |
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.
line 55: Spacing before text
Static Site
Congratulations! You're submitting your assignment!
Comprehension Questions