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

Sandra Caballero-Spruce #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

Sanderspat
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

@anselrognlie anselrognlie left a comment

Choose a reason for hiding this comment

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

Great job on your site! It feels really dramatic. But you were able to accomplish that with clean structure, and a good style rules. You made good use of flex and grid layouts, as well. Keep it up!

background:rgb(255,160,122);
}

.grid-container {

Choose a reason for hiding this comment

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

It looks like there's quite a lot of repetition in the CSS files. Try to extract as many of the rules into the general style file, and then only put the differences into per-page style files. Then on the various pages, simply link both the general and the per-page CSS file, with the per-page file coming second. It will override the general style rules, cutting down significantly on the duplication between files.

}

img{
display:flexbox;

Choose a reason for hiding this comment

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

It shouldn't be necessary to explicitly set the display to flexbox. So long as the img is a child of an element marked as display flex, then the other flex rules will apply.

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Readex+Pro:wght@200&display=swap" rel="stylesheet">

Choose a reason for hiding this comment

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

Nice custom web font!

<title> Sandra P Caballero </title>
</head>
<body>
<div>

Choose a reason for hiding this comment

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

Consider using a nav tag, since this section groups together the main navigation links.

<div class="grid-spacing"> <a href="portfolio.html">Portfolio</a></div>
</div>
</div>
</main>

Choose a reason for hiding this comment

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

This looks like a stray closing tag (running through a validator can catch things like this).

</head>
<body>
<header>
<center><h1>Programming Portfolio</h1></center>

Choose a reason for hiding this comment

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

The center tag shouldn't be used anymore. We should use style rules (such as text-align) to achieve centered text.

<p>
✨Thank you for visiting✨
</p>
</body>

Choose a reason for hiding this comment

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

Missing the closing footer tag here. A validator can help us catch issues like this.

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