Posts

Showing posts with the label html link text

how to Create Text links in html

Image
  How to Create Text Links in HTML (With Examples) how to Create Text links in html   Text link is called hyperlink is a piece of text  use click go to another webpage file or section within same page   Text links created using <a> tag (is called anchor tag) how to Create Text links in html  Example  <! DOCTYPE html > < html > < body > < h4 > Click  Following link </ h4 > < a href = "https://webdesigningtheory.blogspot.com" target = "_blank" > HTML Program </ a > </ body > </ html > how to Create Text links in html  Explain Program Step 1 ] <!Doctype html> <!doctype html>  always be the  first line  of any HTML document. Step 2 ]    <html>  and  </html>    html  is the  root element . Step 3 ] <body>  and  </body> body  is  main content area. All visible content...