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

C15 Accelerate Naomi Quinones #12

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

Conversation

naomiquinones
Copy link

No description provided.

Comment on lines +14 to +23
<header class="about-page page-header"><h1>Naomi Quiñones</h1></header>
<nav class="page-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="code-journal.html">Code Journal</a></li>
</ul>
</nav>
<main id="content">
Copy link

Choose a reason for hiding this comment

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

Jquery is a javascript library that you can use to make your nav bar reusable? I know this project focused on HTML/CSS but its a fun library to look into. Here is an example explaining how to implement it.

Copy link
Author

Choose a reason for hiding this comment

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

@tgoslee, thanks for the tip!

<img src="images/hair-cells.png" alt="Mouse cochlea hair cells">
</li>
<li>Photography<br>
<img src="images/cheesecake.jpg" alt="Cheesecake">
Copy link

@tgoslee tgoslee Jul 7, 2021

Choose a reason for hiding this comment

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

great that you implemented the alt attribute. Here is an article that does into depth about alt attributes and how descriptions should be written. article

Copy link
Author

Choose a reason for hiding this comment

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

Thanks for the article, @tgoslee. It's helped me refine my understanding of how to better describe the images.

</li>
</ul>
</main>
<footer class="page-footer">&copy;2021 Naomi Quiñones</footer>
Copy link

Choose a reason for hiding this comment

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

Check out the article I posted above on the header. You can also make your footer reusable if you want.

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
Copy link

Choose a reason for hiding this comment

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

This could be your title of this page. Code-journal

Copy link
Author

Choose a reason for hiding this comment

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

Thanks for pointing this out! I totally missed it!

Comment on lines +31 to +32
</a></h3></li>
<li></li>
Copy link

Choose a reason for hiding this comment

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

I would remove these if not being used

<main id="content">
<h2>Code Journal</h2>
<ol>
<li><h3><a href="https://docs.google.com/presentation/d/1pIhvLBgVmvac0oUbfi-j8RTfcZFl4K3LlbDxvDXuRUQ/edit?usp=sharing">SVG<br>
Copy link

Choose a reason for hiding this comment

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

take advantage of CSS instead of nesting a link inside an h3 inside a li tag. Add the CSS you want to the li tag

Copy link
Author

Choose a reason for hiding this comment

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

Thanks, @tgoslee, If the structure I originally wanted was a title in an h2 followed by the description text in the main body of the li, would that change your recommendation for the markup?
I.e. something like:
li
h2 title of this list item
description of this item
possible image

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
Copy link

Choose a reason for hiding this comment

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

I would put something like main page or home page or your name

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
Copy link

Choose a reason for hiding this comment

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

I would put portfolio page

Comment on lines +24 to +37
<h2>Portfolio</h2>
<ul>
<li>
<h3>"add-colors" feature for nvm</h3>
<p>A tool used by software developers</p>
</li>
<li>
<h3>Just Say In</h3>
<p>A translation and messaging tool</p>
</li>
<li>
<h3>TBA</h3>
</li>
</ul>
Copy link

Choose a reason for hiding this comment

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

throughout I would format your code to be more readable or add an extension that does it for you!

Comment on lines +109 to +115
@media (min-width:800px) {
.page-nav ul {
display: flex;
}
.page-nav li {
flex: 4;
}
Copy link

Choose a reason for hiding this comment

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

I love that you made the page responsive ! People may be looking at your portfolio on any kind of device! Here is a great resource for media queries !

@tgoslee
Copy link

tgoslee commented Jul 7, 2021

This is a great start to your portfolio! I love your header and the vibrant colors. I left comments on making the header/footer reusable, formatting, and linking your projects!

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