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

Otters - Natalya Z #88

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

Otters - Natalya Z #88

wants to merge 4 commits into from

Conversation

memermaid
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? Yes, I put some text inside
    tag.
Why is it important to consider and use semantic HTML? Because it makes your code more comprehensive to other developers.
How did you decide to structure your CSS? I made a template on a paper
What was the most challenging piece of this assignment? Design
Describe one area that you gained more clarity on when completing this assignment More comfortable with flex
Optional
Did you deploy to GitHub Pages? If so, what is the URL to your website? https://memermaid.github.io/index.html

Copy link

@kendallatada kendallatada left a comment

Choose a reason for hiding this comment

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

Hi Natalya! Your submission has been scored as green. Your portfolio was so vibrant and fun to go through! Your code was beautifully organized and you did a great job using semantic HTML tags. You can find my comments in your code. Let me know if you have any questions. ✨

<link href="../styles/index.css" rel="stylesheet">
<link href="../styles/style.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Zen+Loop:ital@0;1&display=swap');

Choose a reason for hiding this comment

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

I would recommend using the <link> tag instead of @import. Not sure if you made this decision because this is a 3rd party stylesheet, but it's valid to pass urls to the href attribute.

So you could simply do:

<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Zen+Loop:ital@0;1&display=swap" rel="stylesheet">

Here's a good discussion on why the <link> tag is preferred: https://stackoverflow.com/questions/1022695/difference-between-import-and-link-in-css

<h1 id="header-h1">Personal Portfolio</h1>
<h2 id="header-h2">Natalya Zakharova</h2>
</div>
<img id="avatar" src="../images/memoji-sticker.PNG" alt="memoji-sticker-of-me">

Choose a reason for hiding this comment

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

love your Memoji! 💖

<a class="nav-bar" href="../pages/portfolio.html">My Portfolio</a>
<a class="nav-bar" href="../pages/contact.html">Contact Me</a>
</nav>
<article>

Choose a reason for hiding this comment

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

Great usage of semantic HTML tags! 🥳

</a>
</div>
<footer>
<h4>© Made by Natalya Z || 2022</h4>

Choose a reason for hiding this comment

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

Careful to only use <h1>-<h6> tags for actual section headers! They're used to automatically construct a table of contents.

You can read more about best practices here: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Heading_Elements#usage_notes

</div>
</div>
<div class="about-box img-show">
<img src="../images/ka-iwi-hawaii.JPG" alt="lookout-on-ka-iwi-in-hawaii">

Choose a reason for hiding this comment

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

Alt text should be written as a short sentence so you don't need the dashes. You can read more about alt text, why it's important, and best practices here: https://moz.com/learn/seo/alt-text

}


.hidden-text {

Choose a reason for hiding this comment

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

Love your hidden text feature! 💕

<div>
<p class="project-description">The task of this project was to create an API with CRUD endpoints.</p>
<div class="technologies-skills">
<div>

Choose a reason for hiding this comment

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

Try to avoid unnecessary <div> tags! They're great for grouping elements, but try to use more semantic tags when possible.

<p>This is a final project for Code in Place course by Stanford</p>
<p>Technologies used: Python</p>
</div>
<aside>

Choose a reason for hiding this comment

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

This tag is just kinda floating here with no content. Make sure to clean up your code before calling it done! 🧼 🧹

</div>
<aside>
</aside>
<iframe src="https://replit.com/@memermaid/snowmanproject?embed=true"></iframe>

Choose a reason for hiding this comment

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

Love your usage of iframes to embed your replits! 🤩

}


.ada-projects-grid .flex-box{

Choose a reason for hiding this comment

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

Great job with your descriptive class names! Your CSS files are super organized and easy to follow because of it. 🎉

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