HTML (HyperText Markup Language) provides the structure of a webpage. It tells the web browser what the content is—like a heading, a paragraph, an image, or a link.
HTML uses "tags" to wrap around content. Most tags come in pairs: an opening tag and a closing tag (which has a forward slash /).
<h1> makes the text very large and important.<p> is for standard reading text.<button> creates a clickable button on the screen.A student tried to code a heading that says "Go Eagles!", but they made a mistake and the code is broken. Can you spot what is wrong?
What HTML tags would you use to create a button on your website that says "Submit"?