-
Notifications
You must be signed in to change notification settings - Fork 44
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
Pipes - Angela - Static Site #38
base: master
Are you sure you want to change the base?
Conversation
Static SiteWhat We're Looking For
|
</article> | ||
|
||
<!-- Footer --> | ||
<footer> |
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.
We should have this footer
section on every page, similarly to the header
tag. This will help maintain a consistent styling and layout throughout the site.
</nav> | ||
</header> | ||
|
||
<article class="text-align-center"> |
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.
We should probably surround these two article
tags within a main
tag:
<main>
<article class="text-align-center">
...
</article>
<article class="grey-background text-align-center">
...
</article>
<article>
...
</article>
</main>
<h1>A few fun facts about myself</h1> | ||
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English.</p> | ||
|
||
<img src="" alt=""> |
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.
We do not need this img
tag as it has no reference to a source image.
|
||
</article> | ||
|
||
<article class=""> |
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.
We do not need the class
attribute on this element as it has not been set to any value.
Static Site
Congratulations! You're submitting your assignment!
Comprehension Questions