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

NW6 | Fikret Ellek | HTML-CSS Module | Multipage Clone | Week 4 #186

Open
wants to merge 18 commits into
base: main
Choose a base branch
from

Conversation

fikretellek
Copy link

@fikretellek fikretellek commented Nov 7, 2023

Learners, PR Template

Self checklist

  • I have committed my files one by one, on purpose, and for a reason
  • I have titled my PR with COHORT_NAME | FIRST_NAME LAST_NAME | REPO_NAME | WEEK
  • I have tested my changes
  • My changes follow the style guide
  • My changes meet the requirements of this task

Changelist

I have created portfolio page. started from mobile and then added desktop media query at 540px width

Questions

Ask any questions you have for your reviewer.

Copy link

netlify bot commented Nov 7, 2023

Deploy Preview for cyf-module-html-css ready!

Name Link
🔨 Latest commit 2187ec4
🔍 Latest deploy log https://app.netlify.com/sites/cyf-module-html-css/deploys/6549a5f88ccf77000835bb60
😎 Deploy Preview https://deploy-preview-186--cyf-module-html-css.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance:
Accessibility:
Best Practices:
SEO:
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

@musayuksel musayuksel left a comment

Choose a reason for hiding this comment

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

Overall, your pages looks great @fikretellek ! However, the deployment is not showing the pages due to the deployment configuration.
Although this is not your responsibility, you have the potential to resolve the issue by:

  • Go to your Netlify account
  • Locate the project you want to modify and select it
  • Click Deploy > Deploy Settings
  • Update the "Publish directory" field with the location of your HTML files.

<input type="text" id="subject" />
<label for="message">Message</label>
<input type="text" id="message" />
<button class="btn-card submit-btn align-self-center">Submit</button>

Choose a reason for hiding this comment

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

Great use of labels for semantic HTML! It enhances accessibility and improves user experience @fikretellek Well done!

<a class="nav-links" href="./projects.html">PROJECTS</a>
<a class="nav-links" href="./contacts.html">CONTACT</a>
</nav>
</aside>

Choose a reason for hiding this comment

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

Great job on creating a sidebar navigation! To further enhance the structure and semantics of your code, you can consider using an unordered list ul with list items li instead of individual anchor (a) tags. This approach provides a more standardised and accessible way of representing a navigation menu. Like:

<aside class="sidebar">
  <nav class="menu-nav">
    <ul>
      <li><a class="nav-links" href="./index.html">ABOUT ME</a></li>
      //other links

sans-serif;
--gap: 13px;
--shd: -11.31px 11.31px 17px 0px rgba(138, 131, 124, 0.23);
}

Choose a reason for hiding this comment

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

An excellent approach to utilising CSS variables!

box-sizing: border-box;
margin: 0;
padding: 0;
}

Choose a reason for hiding this comment

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

Again, great job on implementing a CSS reset! Utilising the code snippet you provided is a standard and widely accepted practice in CSS-only projects!

object-fit: cover;
}

@media screen and (min-width: 540px) {

Choose a reason for hiding this comment

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

Great use of media queries to create responsive design! However, using multiple media queries in this case might not be necessary since the styles applied in each media query are the same. Consolidating the media queries into a single one can indeed simplify the code and make it more concise.

<a class="nav-links" href="./resume.html">RESUME</a>
<a class="nav-links" href="./projects.html">PROJECTS</a>
<a class="nav-links" href="./contacts.html">CONTACT</a>
</nav>

Choose a reason for hiding this comment

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

Same a before ⬆️

Comment on lines +1 to +12












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.

3 participants