fix(curriculum): typo in step 1 of building a Cafe Menu (#54967)

This commit is contained in:
RaghavMaliwal
2024-05-24 20:48:59 +05:30
committed by GitHub
parent 88f517e739
commit 1069b192db

View File

@@ -7,7 +7,7 @@ dashedName: step-1
# --description--
In this project, you will learn the basics of CSS(Cascading Style Sheets) by building a cafe menu. CSS is the language used to style an HTML document. It describes how HTML elements should be displayed on the screen.
In this project, you will learn the basics of CSS (Cascading Style Sheets) by building a cafe menu. CSS is the language used to style an HTML document. It describes how HTML elements should be displayed on the screen.
As you learned in the last few steps of the Cat Photo App, there is a basic structure needed to start building your web page. Every HTML document should have a `DOCTYPE` declaration and `html` element. The `DOCTYPE` tells the browser which version of HTML the document is in. And the `html` element represents the root element which contains all other elements.