Computer Science, asked by world22, 6 months ago

Write Html5 code with CSS as Follows- 1. Create an ordered or unordered list with names of tourist Cities.
2. Create a Definition list related with the field of sports.
3. Display the list into two sections left and right by using CSS. ​

Answers

Answered by xs2sanvikhanna
3

Answer:

1. unordered list

<html>

<head>

<title> tourist cities <title> </head>

<ul>

<li> jaipur

<li>delhi

<li> bihar

</ul>

</html>

2.<html>

<head><title>sports <title> </head>

<dl>

<dt> sports name </dt>

<dd> definition </dd>

</html>

Explanation:

you can put any sport name and its definition

i hope it helps

Similar questions