Apply Today to our Front End or Back End Programs & check out our scholarships!

Back to Setup Page

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 h2 element and three input elements.
  • Click the green Run button to see your results.

HTML Summary

  • Elements that live inside of the body tags 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.

Next Section: JavaScript - Overview