ad

Saturday, September 13, 2025

html link tag explain. how to link css

                               html link tag explain

https://webdesigningtheory.blogspot.com

html link tag explain. how to link css 

Example

<!Doctype html>

<html>

<head>

<title>Hyperlink Example</title>

</head>

<body alink ="blue" link ="red" Vlink= "pink">
<P>click following link </p>
<a href = "https://webdesigningtheory.blogspot.com" target ="_blank">HTML tutorial</a>
</body>

</html>

Explain Program

Step 1 ]

<!DOCTYPE html>

  •  document type declaration.
  • browser help this is an HTML5 document.

Step 2 ]  

. <html> ... </html>

  • root element of the HTML document.
  • <html> tag is part of the web page.

Step 3 ]  

<body> ... </body>

  • HTML document that holds visible content on the page.
    • A heading (<h2>)
    • An input button (<input type="button">)
    • list tag 
    • ext...

Step 4]  

<body aline="blue" link="red" vlink="pink">

<body>  page's content 
attributes define colors for links


Attribute                Description                                  color code


link                        color unvisited  links                      red    
vlink                      color visited links                          pink   
aline                       color link is active (clicked)         blue 

Step 4]  

<p> click following link </p>

<p>  paragraph tag  Displays  the text 
click following link 

. <P>click following link </p>

  • <P> is a paragraph tag (should be lowercase, but works).
  • Displays the text:

·         click following link

Step 5]

<a href ="www.google.com" target="blank">HTML turorial</a>

this anchor tag that creates  a hyperlink.

href="www.google.com"  = this set URL link 

 Target ="blank" = browser to open link new tab.
clickable text of the link.


OUTPUT

html link tag









Related Post :- 

PHP Cookies Tutorial

JavaScript Logical Operators Explained with Examples

C Program to Check Whether a Number is Prime or Not