Skip to content

noob-coder6/Recipe-page

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Mentor - Recipe page solution

This is a solution to the Recipe page challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.

Table of contents

Links

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Responsive design
  • Google Fonts (Outfit & Young Serif)
  • Mobile-first workflow

What I learned

Working on this recipe page helped me improve my understanding of:

  • CSS Custom Properties: Used CSS variables to maintain a consistent color scheme throughout the project
:root {
  --color-nutmeg: hsl(14, 45%, 36%);
  --color-dark-raspberry: hsl(332, 51%, 32%);
}
  • Semantic HTML: Structured the recipe content using appropriate semantic elements like <section>, <main>, and proper heading hierarchy

  • List Styling: Customized list markers to match the design aesthetic

li::marker {
  color: var(--color-nutmeg);
  font-weight: bold;
}
  • Responsive Design: Implemented mobile-first approach with media queries to ensure the recipe page looks great on all devices

Continued development

In future projects, I want to continue focusing on:

  • Advanced CSS layout techniques
  • Accessibility best practices
  • Performance optimization for web fonts and images
  • Creating more complex responsive designs

Author

About

This is a recipe page solution to a frontend.io project question

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published