Challenge: Add HTML Tags and Bind Data

Make three `h1` tags inside the `body` tag in an HTML webpage, and bind data elements of an array with an HTML DOM element.

Problem statement

In this challenge, we will test your knowledge of what we have covered so far.

The tasks in this challenge are as follows:

  • Create three new h1 tags inside the body tag in the HTML file.
  • Bind the given array of data with each h1 tag.
  • Show the data that is mapped with the HTML DOM elements on the output screen.

Note: You have to create three h1 tags using DOM manipulation.

Given Data

An array of data and an HTML page

var mydata=["London","New york","Paris"]
<head>
	<script src="https://d3js.org/d3.v6.min.js"></script>
</head>
<body>
</body>
</html>

Expected Output

The expected output is the names of the cities in the output tab after binding them with li tags.

Output:

London

New York

Paris

Get hands-on with 1200+ tech skills courses.