Prepare a webpage using HTML5 to display list of states in India,common languages spoken, and their state flags in a tabular form
Answers
Answered by
0
Ok Nc Question Very Good Good Questions
Answered by
5
display list of states in India
common languages spoken
The state flags in a tabular form
Explanation:
<html>
<head>
<h> States in India.</h>
</head>
<body>
<h>Languages spoken in India.</h>
<ul>
<li>Marathi</li>
<li>HIndi</li>
<li>Punjabi</li>
</ul>
<ul>
<li>Maharashtra</li>
<li>Goa</li>
<li>Sikkim</li>
</ul>
</body>
</html>
Similar questions