image of dev

Creating HTML elements using jQuery/JS



What is an HTML element?

A HTML is what makes up a webpage - in essence it defined in HTML by a tag.

for example, this section of this webpage is made up as shown in this image on the right.

You should see that there is

  1. a div element that is is a row
  2. then inside that there is a div element that is a column
  3. then there is a paragraph element that has some text inside it along with an ordered list
  4. and so on...
You should see that we have just deconstructed the elements

This tutorial will show you how to build these elements using jQuery, JS and Dictionaries introducing you to the concept of Dynamic Webpages

image of divs