Recent

6/recent/ticker-posts

HTML (20)

HTML (20)

RoboGarden | Leverage of Coding

External Linking

We can connect one document to another with the <A> Tag ant its href attribute,Which is used to define the URL of the document.


Free Computers Clipart - Clip Art Pictures - Graphics - IllustrationsATTRIBUTE

href attribute = It specify the URL of the target document.

Example ↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
<ol type="A">
<li><a href ="https://www.google.com/">GOOGLE</a></li>
<li><a href="https://in.yahoo.com/">Yahoo</a></li>
<li><a href= "https://www.bing.com/">BING</a></li>
</ol>
</body>
</html>




Title attribute = It helps to specify the title for the document.

Example↓↓↓↓

<a href ="https://www.google.com/">GOOGLE</a>
                                                                           ↓
                                                                        Title

Post a Comment

0 Comments