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

Sharks - Philomena Kelly #29

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

Conversation

Philomena-Kelly
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?
Why is it important to consider and use semantic HTML?
How did you decide to structure your CSS?
What was the most challenging piece of this assignment?
Describe one area that you gained more clarity on when completing this assignment
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website?

Copy link
Contributor

@spitsfire spitsfire left a comment

Choose a reason for hiding this comment

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

Nicely done, Philomena! Remember to remove any commented code you are no longer using from the final submission. I made a few suggestions about changing out a few HTML elements, but other than that this looks just fine!

</section>

</main>
<footer><div class="bottom">(c) philomena</div></footer>
Copy link
Contributor

Choose a reason for hiding this comment

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

Careful with using div tags as a text container. They are used to divide collections of content.

Instead, let's use a p tag or other elements that are text-specific

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta charset="UTF-8">
Copy link
Contributor

Choose a reason for hiding this comment

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

👍 no validation errors!

<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<meta charset="UTF-8">
Copy link
Contributor

Choose a reason for hiding this comment

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

👍 no validation errors!

Comment on lines +23 to +31
<div id="container">


<div class="project"><h1>project</h1></div>
<div class="project"><h1>project</h1></div>
<div class="project"><h1>project</h1></div>


</div>
Copy link
Contributor

Choose a reason for hiding this comment

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

Let's make the div.container a section instead

Also there should only ever be one h1 per page, so perhaps h2 would be better here

</div>

</main>
<footer>(c) philomena</footer>
Copy link
Contributor

Choose a reason for hiding this comment

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

Oops, you are missing your styling class like the other pages

Comment on lines +18 to +19
/* object-position: 0% 10%; */
/* filter: hue-rotate(300deg); */
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
/* object-position: 0% 10%; */
/* filter: hue-rotate(300deg); */

Comment on lines +1 to +12


/* #hello {
background-color: lightpink;
top: 25%;
left: 0px;
position: absolute;
height: 50%;
width: 100%;
text-align: center;
} */

Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
/* #hello {
background-color: lightpink;
top: 25%;
left: 0px;
position: absolute;
height: 50%;
width: 100%;
text-align: center;
} */

Comment on lines +52 to +67
/* nav {
text-align: right;
background: none;
padding: none;

}

nav a {
text-decoration: none;
font-size: 20pt;
font-weight: lighter;
background: white;
padding-left: 20px;
line-height: 125%;
color: black;
} */
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
/* nav {
text-align: right;
background: none;
padding: none;
}
nav a {
text-decoration: none;
font-size: 20pt;
font-weight: lighter;
background: white;
padding-left: 20px;
line-height: 125%;
color: black;
} */

Comment on lines +25 to +26

/* background-color: yellow; */
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
/* background-color: yellow; */

.name_container {
display: grid;
width: 700px;
/* background: grey; */
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
/* background: grey; */

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.

3 participants