HTML - Content
Tour the Existing Code
Elements that live inside of the <body> tags will be displayed on the page.
- Where do you see the text displayed in the browser reflected in the code?
- What is the purpose of the
<input>element? - What organizational structures do you notice?
- What questions do you have after looking over the code?
Modify the HTML in your MASH App
Now that we're getting to know HTML and this specific project a bit better, let's modify it!
- Add two more categories, each with a
h2element and threeinputelements. - Click the green
Runbutton to see your results.
HTML Summary
- Elements that live inside of the
bodytags will be displayed on the page. - The number of elements and the content inside of the elements in the HTML file usually have a 1-1 correlation with what we see in the browser.