Skip to content

MahmoodHashem/Mentor-Challanges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wakatime

Frontend Mentor Challenges

Welcome to my repository where I tackle challenges from Frontend Mentor. Frontend Mentor provides real-world coding challenges that help developers improve their coding skills by building realistic projects.

Introduction

This repository is a collection of my solutions to various Frontend Mentor challenges. Each challenge is an opportunity to practice and refine my web development skills including HTML, CSS, JavaScript, and various frameworks and libraries.

Repositories

NEWBIE
  1. 3 Column Preview Card
  2. Article Preview Component
  3. Base Apparel coming soon
  4. Blog Card
  5. Equalizer Landing page
  6. FAQ Accordion
  7. Four Card Feature
  8. Huddle Landing Page
  9. Intro Component with Sign-up Form
  10. Interactive Rating Component
  11. NFT Preview Card
  12. Order Summary Component
  13. Ping Coming Soon
  14. Product Preview Card
  15. Profile Card component
  16. QR Code
  17. Recipe Page
  18. Result Summary
  19. Single Price Grid Component
  20. Skilled E-Learning landing page
  21. Social Links Profile
  22. Social Proof Section
  23. Stats Preview Card
  24. Workit Landing page
JUNIOR
  1. Advice Generator
  2. Age Calculator
  3. Bento Grid
  4. Blogr Landing Page
  5. Crowd Funding product page
  6. Contact Form
  7. Coding bootcamp testimonial
  8. Clipboard Landing Page
  9. Expense Chart
  10. Fylo Data Storage Component
  11. Fylo Dark them Landing Page
  12. Github User Search
  13. Huddle Landing Page With curved
  14. Huddle Landing Page With Feature blocks
  15. Loopstudio Landing page
  16. Insure Landing Page
  17. Interactive Card Details
  18. Interactive Pricing Component
  19. Intro Section with Dropdown Menue
  20. Mortgage repayment calculator
  21. Newsletter Subscription
  22. News Homepage
  23. Notification Page
  24. Pricing Component with Toggle
  25. Product List with cart
  26. Project Tracking Intro
  27. Skilled Elearning Landing page
  28. Sunnyside agency landing page
  29. Testimonials Grid Section
  30. Time Tracking Dashboard
  31. Tip Calculator
INTERMEDIATE
  1. Frontend Qiuz App
  2. Launch Countdown timer
  3. Todo App

Challenges

Below is a list of Frontend Mentor challenges I have completed.

QR Code Component
Social Links Profile
Blog Card
NFT Preview Card
Order Summary Component
Product Preview Card
Rating Component
Recipe Page
Newsletter Subscription
Age Calculator
Reuslt Summary
Sign Up Form
News Homepage
Time Tracking
Advice Generator
FAQ Accordian
Social Proof Section
3 Column Preview
Intro Section
Coding Bootcamp Testimonial Slider
Ping Coming Soon
Single Price Grid Component
Stats Preview Card
Four Card Feature
Huddle Landing Page
Huddle Landing Page with curved sections
Article Preview Component
Expense Chart Component
Contact Form
Base Aparel coming soon
Interactive Card Details
Launch Countdown Timer
Todo App
Sunnyside Agency Landing Page
Mortgage Repayment Calculator
Clipboard Landing Page
Blogr Landing Page
Githu User Search
Workit Landing page
Skilled Elearning Landing Page
Interactive Pricing Component
Testimonial Grid Section
Crowd Funding Product page
Product List with cart
Bento Grid
Equalizer Landing Page
Fylo Data Storage Component
Tip Calculator App
Loopstudio Landing Page
Insure Landing Page
Pricing Component with Toggle
Project Tracking Intro
Huddle Landing Page with Featre blocks
Fylo Dark Them Landing Page
Frontend Quiz App

Contributing

Feel free to fork this repository and submit pull requests to contribute to these challenges. You can also open issues to discuss potential improvements or any bugs you find.

Contact

If you have any questions, feel free to contact me.

Copy this and Get my message

    <h1 class="info">Mahmood Hashemi <br> Mobile and Web Developer</h1>
    <div class="container"><h1 id="message">Happy Coding!</h1></div>
 .info{
            position: fixed;
            color: rgb(255, 255, 255);
            font-family: sans-serif;
            letter-spacing: 5px;
            bottom: 20%;
            line-height: 2;
            opacity: 0.4;
            text-align: center;
        }

body, html {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #282c34;
    color: #61dafb;
    font-family: Arial, sans-serif;
    background-image:
}

.container {
    text-align: center;
    animation: fadeIn 5s ease-in-out infinite;
}

@keyframes fadeIn {
    0%,100% { opacity: 0; }
    50% { opacity: 1; }
}
document.addEventListener('DOMContentLoaded', function() {
    const message = document.getElementById('message');
    let opacity = 0;
    let direction = 1;

    setInterval(() => {
        if (opacity >= 1) direction = -1;
        else if (opacity <= 0) direction = 1;

        opacity += direction * 0.01;
        message.style.opacity = opacity;
    }, 50);
});