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

Feature branch #1

Merged
merged 4 commits into from
Jan 12, 2023
Merged

Feature branch #1

merged 4 commits into from
Jan 12, 2023

Conversation

ikoote1
Copy link
Owner

@ikoote1 ikoote1 commented Jan 12, 2023

Added CSS and HTML files with the toolbar and headline sections

Copy link

@franclobo franclobo left a comment

Choose a reason for hiding this comment

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

Hi @ikoote1,

♻️ Required Changes ♻️

so-close-jim-halpert

Good job so far!
There are some issues that you still need to work on to go to the next project but you are almost there!

Highlights

  • No linter errors ✔️
  • Correct Github flow ✔️

Required Changes ♻️

Check the comments under the review.

Optional suggestions

Every comment with the [OPTIONAL] prefix is not crucial enough to stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better.

You can also consider:

  • [OPTIONAL] Kindly add a descriptive PR with a tile and a summary of the actions for professional documentation. 👇🏽
edit.PR.mp4
  • Please 🙏🏽 add the .png and .svg files into an images folder to be organized.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.
Please, remember to tag me in your question so I can receive the notification.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

style.css Outdated
.toolbar {
position: absolute;
width: 375px;
height: 92px;
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Kindly correct the dimension of the toolbar, it is 👉🏽 height: 46px; 👈🏽 don't consider the status bar because it is a reference.

style.css Outdated
font-size: 56px;
line-height: 64px;
letter-spacing: 0.37px;
color: red;
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Please 🙏🏽 correct the color, it is color: #FF6B00; instead of red to be similar to the Figma template.

background: #1c1a19;
}

h1 {
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Kindly correct the spaces (margins) between the title and subtitle to be similar to the Figma template 👇🏽
Figma template Your design
image image

style.css Outdated
Comment on lines 117 to 123
.micro7 {
position: absolute;
left: 0.04%;
right: 0.03%;
top: 70%;
bottom: 0%;
}
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Please 🙏🏽 correct the alignment position of social icons to be similar to the Figma template, it could be better to use pixels instead of percentages.
Figma template Your design
image image

index.html Outdated
Comment on lines 10 to 17
<header>
<nav class="toolbar">
<nav class="tbar">
<nav class="menu-bar">
<img src="John Doe.png" class="john-doe">
<img src="Icon - Menu.png" class="icon-Menu">
</nav>
</nav>
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • For good practices of HTML&CSS the header tag should close after the navbar. Please 🙏🏽 fix it.

index.html Outdated
<nav class="toolbar">
<nav class="tbar">
<nav class="menu-bar">
<img src="John Doe.png" class="john-doe">
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Kindly add an a tag to the logo this is for three reasons: convention, semantics, and user experience(UX). Check this link for more info. Also, we can use our name to personalize our portfolio.

index.html Outdated
</nav>
</nav>

<nav class="headline">
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • The correct semantic for this section is the section tag, please 🙏🏽 fix it for the good practices of HTML&CSS.

index.html Outdated
</nav>

<nav class="headline">
<nav>
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • If you want to separate elements in a container you could use div tag because this is not a navbar. Please 🙏🏽 fix it for good practice of the HTML&CSS.

index.html Outdated
<p class="txt">I can help you build a product , feature or website Look through some of my work and experience! If you like what you see and have a project you need coded,
don’t hestiate to contact me.</p>
</nav>
<img src="Illustration.svg" class="illust" >
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Please 🙏🏽 use CSS background if an image is not part of the content (aesthetic reasons) for good practice of HTML&CSS. Check this link for more info.If an image is not part of the content (aesthetic reasons) use CSS background-image. Check this link for more info.

index.html Outdated
don’t hestiate to contact me.</p>
</nav>
<img src="Illustration.svg" class="illust" >
<img src="Social Media.png" class="micro7">
Copy link

@franclobo franclobo Jan 12, 2023

Choose a reason for hiding this comment

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

  • Kindly for the list of icons use a ul tag to group them, and li per icon; each icon has a link (a tag). Apart from being semantically correct, the a tag will let you connect your social networks with the icons, using href.
  • [OPTIONAL] Please 🙏🏽 link the social icons to the web pages because you will need them later 👇🏽
  • GitHub
  • LinkedIn
  • Angellist
  • Twitter
  • Medium

Copy link

@Gambit142 Gambit142 left a comment

Choose a reason for hiding this comment

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

Hi @ikoote1 👋,

Great work on making the changes requested by a previous reviewer 👏

Highlights

  • All linters checks passed ✔️
  • README.md file is professional ✔️

You've done well implementing some of the requested changes, but there are still some which aren't been addressed yet.

Required Changes ♻️

Kindly check the comments under the review.

Optional suggestions

  • Kindly consider the suggestion tagged [OPTIONAL]

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.

Cheers and Happy coding!👏👏👏

Feel free to leave any questions or comments in the PR thread if something is not 100% clear.

Please, remember to tag me in your question so I can receive the notification. You can tag me by typing @Gambit142

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.

index.html Outdated
<header>
<section class="toolbar">
<div class="tbar">
<div class="menu-bar">

Choose a reason for hiding this comment

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

  • For semantic purposes, kindly change this tag from a div to a nav tag. I noticed it was a nav tag before then you changed it to a div tag. I am referring to the div tag with the class attribute menu-bar 👍

index.html Outdated
<section class="toolbar">
<div class="tbar">
<div class="menu-bar">
<p class="john-doe">IKOOTE</p>

Choose a reason for hiding this comment

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

  • For semantic purposes, kindly change this from a p tag to an a tag. Making the logo a link improves user experience and makes the navigation of the webpage easier. It is also good HTML practice to make the logo of a webpage a link. 👍

index.html Outdated
Comment on lines 9 to 10
<header>
<section class="toolbar">
Copy link

@Gambit142 Gambit142 Jan 12, 2023

Choose a reason for hiding this comment

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

  • Just like the first reviewer mentioned, the section tag should not be inside a header because the header tag is a section on its own. I would advise you to change this so that it becomes semantic. 👍

Hint:

<header>
  <a href="#">logo</a>
  <nav>hamburger button</nav>
</header>

Comment on lines +3 to +10
.toolbar {
position: absolute;
width: 375px;
height: 46px;
left: 0;
top: 0;
background: #3c3a39;
}

Choose a reason for hiding this comment

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

  • [OPTIONAL] Based on the requirements, this section should be aligned using a flexbox. Using flexbox makes your design responsive across various screen sizes. I would advise you to implement this suggestion. 👍

index.html Outdated
Comment on lines 27 to 28
<p style="background-image: url('./images/Illustration.svg');" class="illust">

Copy link

@Gambit142 Gambit142 Jan 12, 2023

Choose a reason for hiding this comment

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

  • Great work making the changes requested by the previous reviewer. However, it is not a good HTML/CSS practice to use inline styles when making CSS declarations. I would advise you to put this declaration in your style sheet. For more information, you can read this article

index.html Outdated
Comment on lines 30 to 36
<ul>
<li><img src="./images/Vector1.png" alt="github"></li>
<li><img src="./images/Vector2.png" alt="instagram"></li>
<li><img src="./images/Vector3.png" alt="tree"></li>
<li><img src="./images/Vector4.png" alt="twitter"></li>
<li><img src="./images/Vector5.png" alt="messenger"></li>
</ul>
Copy link

@Gambit142 Gambit142 Jan 12, 2023

Choose a reason for hiding this comment

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

  • Great work making the changes requested by the previous reviewer. However, you forgot to wrap each image in the a tag. This is the idea, when I click each icon, it should direct me to the social media page of that link. Kindly wrap each image in the a tag. 👍

Hint:

 <ul>
   <li><a href="..."><img src="./images/Vector1.png" alt="github"></a></li>
    ...
 </ul>

Copy link

@algerina algerina left a comment

Choose a reason for hiding this comment

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

Hi @ikoote1 ,
Good job so far!

May I highlight the following:

  • The repo looks professional.:heavy_check_mark:
  • There are no linter errors:heavy_check_mark:
  • Your project looks awesome:heavy_check_mark:

STATUS: APPROVED 💪👏

Congratulations! 🎉
Your project is complete! It's time to merge it :shipit:

Optional suggestions

  • Please check the comment under the review.

Every comment with the [OPTIONAL] prefix won't stop the approval of this PR. However, I strongly recommend you to take them into account as they can make your code better. Some of them were simply missed by the previous reviewer and addressing them will really improve your application.
Cheers and Happy coding! 👏 👏 👏

Feel free to leave any questions or comments in the PR thread and tag me @algerina if something is not 100% clear.

Please, do not open a new Pull Request for re-reviews. You should use the same Pull Request submitted for the first review, either valid or invalid unless it is requested otherwise.


As described in the Code reviews limits policy you have a limited number of reviews per project (check the exact number in your Dashboard). If you think that the code review was not fair, you can request a second opinion using this form.


If anything seems to be unclear to you, reach out and ask anything by commenting on this Pull Request and mention me as Algerina, I will receive a notification and will respond.

GitHub | LinkedIn | Twitter

Reviewed by Amel Khiri

@ikoote1 ikoote1 merged commit 0542170 into main Jan 12, 2023
@ikoote1 ikoote1 deleted the Feature-branch branch January 12, 2023 20:51
@ikoote1 ikoote1 restored the Feature-branch branch January 13, 2023 08:08
@ikoote1 ikoote1 deleted the Feature-branch branch January 13, 2023 08:09
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.

None yet

4 participants