Skip to content

carlosfrontend/odin-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Odin-Recipes

Recipes Web Page | The Odin Project | Project: Recipes Foundations Course

Go to Preview 👈

In this project, a basic template in HTML language has been used to create several pages with recipes.

The following concepts of this language have been used for its development:

  • Boilerplate HTML
  • Use of headings tags h1, h2, h3
  • Insert images with image tag <img src="./images/sample.jpeg" alt="My sample image"/>
  • Working with links tags:
    • With relative paths <a href="./recipes/guisantes.html">Peas with Ham</a>
    • With absolute paths <a href="/odin-recipes">Back</a>
  • Use of lists:
    • Unordered lists:
      <ul>
          <li>Content1</li>
          <li>Content2</li>
          <li>Content3</li>
      </ul>
      
    • Ordered lists:
      <ol>
          <li>Content1</li>
          <li>Content2</li>
          <li>Content3</li>
      </ol>
      

Happy Coding!!! ❤️