Computer Science, asked by Su2007, 4 months ago

WRITE THE HTML CODE FOR THE FOLLOWING: 5X1=5

1. To display square bullets in unordered list.

2. To start an ordered list with the number 3.

3. To insert an image’picture.gif’ on a webpage and centre align it in the browser’s window.

4. To display the text’building.jpg’ cannot be displayed.

5. To insert the hyperlink of the webpage www.google.comin the table​

Answers

Answered by nandha2401
1

Explanation:

<!DOCTYPE html>

<html>

<head>

<title>HTML Unordred List</title>

</head>

<body>

<h1>Developed Countries</h1>

<p>The list of developed countries :</p>

<ul style="list-style-type:square">

<li>US</li>

<li>Australia</li>

<li>New Zealand</li>

</ul>

</body>

</html>

Similar questions