Monday, 7 October 2013

1- HTML Introduction (Hyper Text Markup Language)

Write the following code in "Notepad" &save it extension .html (myFirstpage.html)

<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
  • The DOCTYPE declaration defines the document type
  • The text between <html> and </html> describes the web page
  • The text between <body> and </body> is the visible page content
  • The text between <h1> and </h1> is displayed as a heading
  • The text between <p> and </p> is displayed as a paragraph

No comments:

Post a Comment