In this HTML and CSS project tutorial, you will improve your HTML and CSS skills by building a recipes website.

💻 Code: https://github.com/john-smilga/html-css-simply-recipes

✏️ Course from John Smilga of Coding Addict. Check out his channel: https://www.youtube.com/channel/UCMZFwxv5l-XtKi693qMJptA

🎥 Starter Project video referenced in tutorial: https://www.youtube.com/watch?v=UDdyGNlQK5w

🎉 Thanks to our Champion and Sponsor supporters:
👾 Wong Voon jinq
👾 hexploitation
👾 Katia Moran
👾 BlckPhantom
👾 Nick Raker
👾 Otis Morgan
👾 DeezMaster
👾 AppWrite

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp

source

34 Comments

  1. For the overlay on the simply recipes banner there is no need for postion: relative or absolute. It goes div 1-> div 2-> div 3 so all you need to do is have div 2 the same height and width as div 1(the parent container) and change the background.

  2. Join the Global community as we explore Blockchain

    A gathering for blockchain enthusiasts, including industry professionals, developers, and traders.

    Featuring: Smart Contract Development, Trading highlights, and Panel Sessions on how blockchain is impacting key industries

    Date: 19th – 21st April 2022

    Link: https://agulite.com/blockchain-week

  3. John. I enjoyed watching this tutorial. I, however, had a question. for the single recipes, should one put in more than one recipe, will the css you did cover every recipe or will copying and pasting need to be done for every recipe thereafter

  4. i've got semi colon expected and selector expected warning when I try to code color and letter-spacing property at 19.34 . Is there any solution for that ?

  5. For the following code, the tags-list display "grid," and the tags-list a display "block"
    What is the relationship between the "grid" and "block" here, please explain in details.
    Thanks

    .tags-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    }
    .tags-list a {
    text-transform: capitalize;
    display: block;
    color: var(–grey-500);
    transition: var(–transition);
    }

Leave A Reply

Please enter your comment!
Please enter your name here