Computer Science, asked by ls219235, 7 months ago

Date
More on HTML
Chapter 5
Answer the following questions
Assignment-3
Q-1.
Write syntax to create Unordered list.
Ans'
Q-2
Write syntax to create Ordered list.
Ans:
Q-3.
What is the full form of HREF and why it is used in html?
Ans.
Q-4.
Which tag is used to add an image in your html document,
Ans:​

Answers

Answered by priyal503441
0

for unordered list

<ul>

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ul>

for ordered list

<ol type="1">

<li>Coffee</li>

<li>Tea</li>

<li>Milk</li>

</ol>

type here defines the type of list maker either it is numbers , uppercase,lowercase...

Hypertext REFerence) The HTML code used to create a link to another page. The HREF is an attribute of the anchor tag, which is also used to identify sections within a document.

In order to put a simple image on a webpage, we use the <img> element. This is an empty element (meaning that it has no text content or closing tag) that requires a minimum of one attribute to be useful — src (sometimes spoken as its full title, source).

Similar questions