Tuesday, 7 February 2017

HTML LESSON - 2

SECOND LESSON OF HTML

<!DOCTYPE html>
<html>
<head>
<title>Second Lesson of HTML</title>
</head>
<body>
<h1>Some New Tags</h1>
<p>An a or anchor tag [ < a > < /a > ] is for making hyperlinks in HTML.</p>
For example:
<a href="http://google.com">This is a link</a>
<br> 
<p> A br tag is an empty element without closing tag [ < br > defines a line break. ] </p>
</body>
</html>




Now, Few Key points to remember always:

  • For learning purpose, one can write code in NOTEPAD (PC) or Textedit (MAC).
  • Then, that notepad file should be saved with .html extension.

Related Posts:

  • HTML LESSON - 2 SECOND LESSON OF HTML <!DOCTYPE html> <html> <head> <title>Second Lesson of HTML</title> </head> <body> &l… Read More
  • HTML Lesson - 6 SIXTH LESSON OF HTML   <!DOCTYPE html> <html> <head> <title>Sixth Lesson of HTML</title> </head> <bod… Read More
  • HTML LESSON - 4   FOURTH  LESSON OF HTML <!DOCTYPE html><html> <head> <title>Fourth Lesson of HTML</title> <head>&l… Read More
  • HTML Lesson - 5 Output of the code given   FIFTH LESSON OF HTML Now, Few Key point to remember always: The td tags contain data like images, t… Read More
  • HTML LESSON - 3   THIRD LESSON OF HTML <!DOCTYPE html> <html> <head> <title>Third Lesson of HTML</title> </head> &l… Read More

0 comments:

Post a Comment