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

Tapasya Khatri C18 Cheetahs #102

Open
wants to merge 34 commits into
base: master
Choose a base branch
from
Open

Tapasya Khatri C18 Cheetahs #102

wants to merge 34 commits into from

Conversation

takhat
Copy link

@takhat takhat commented Nov 23, 2022

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? Yes, there was a missing begin tag. Also there was a recommendation to change a section to div.
Why is it important to consider and use semantic HTML? It makes more sense and keeps the structure consistent.
How did you decide to structure your CSS? I wanted to keep the structure simple and responsive. I used flex box and grid .
What was the most challenging piece of this assignment? The navigation header and the footer.
Describe one area that you gained more clarity on when completing this assignment Difference between Flexbox and grid.
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website? https://takhat.github.io

Copy link

@jbieniosek jbieniosek left a comment

Choose a reason for hiding this comment

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

Great work on this project Tapasya! This project is green.

Comment on lines +32 to +33
<h2>About Me</h2>
<h5>Software Engineering <span>|</span> Product Design</h5>

Choose a reason for hiding this comment

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

In semantic HTML, heading tags should be used to indicate different sections of content, not as stylistic elements. Link

</section>
</header>

<main class="about-content">

Choose a reason for hiding this comment

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

Great use of semantic HTML!

Comment on lines 11 to 21
body {
font-family: sans-serif;
text-align: center;
background-color: #dae1e7;
}

body {
display: flex;
flex-direction: column;
min-height: 100vh;
}

Choose a reason for hiding this comment

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

These can be combined into one section:

Suggested change
body {
font-family: sans-serif;
text-align: center;
background-color: #dae1e7;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
body {
font-family: sans-serif;
text-align: center;
background-color: #dae1e7;
display: flex;
flex-direction: column;
min-height: 100vh;
}

Copy link
Author

Choose a reason for hiding this comment

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

Makes sense to combine. Thank you Jasmine!

}

main.content {
display: flex;

Choose a reason for hiding this comment

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

Nice use of a nested flex layout!

Copy link
Author

Choose a reason for hiding this comment

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

Thank you!!

}

.logo {
font-family: 'Berkshire Swash';

Choose a reason for hiding this comment

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

Pretty!


span {
color: #fff;
font-family: 'Berkshire Swash', cursive;

Choose a reason for hiding this comment

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

Minor note - here you are setting the font-family on the parent (.logo) and here in the span. One thing that you might consider is changing this to inherit. One of the nice things about using inherit here is that if you want to test with different fonts, you only have to change the font on .logo, and it will show up for both sections:

Suggested change
font-family: 'Berkshire Swash', cursive;
font-family: inherit;

Copy link
Author

Choose a reason for hiding this comment

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

Thank you, will try inherit.

.box {
padding: 3em;
position: relative;
display: grid;

Choose a reason for hiding this comment

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

👍

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.

2 participants