Thursday 27 July 2023

Web Development 6

 

LECTURE # 6

26/7/2023
Question #1: For which purpose abbr tag is used ?

Answer: Abbr tag is used for abbriviation of a text in code of html(visual code) It is written as <abbr  title=""></abbr>. For example <abbr title="Pkistan ">pak</abbr>
           
Qustion #2: For which purpose a tag is used ?

Answer: A tag is uased for linking the pages in html.It can be written as <a href=""></a>. For example <a href="https://en.wikipedia.org/wiki/Naran_(town)">name</a>.

<!DOCTYPE html>
<html>
<head>
    <title>Document</title>
</head>
<body>
    <a href="https://en.wikipedia.org/wiki/Naran_(town)">name</a>
</body>
</html>