banner

Sunday, May 25, 2014

Tutorial 3, Question 1

What is HTML


HTML or HyperText Markup Language is the standard markup language used to create web pages.
Description
HTML is written in the form of HTML elements consisting of tags enclosed in angle brackets like <html> . HTML tags most commonly come in pairs like <h1> and </h1> , although some tags represent empty elements are so unpaired, for example <img> . The first tag in a pair is the start tag, and the second tag is the end tag (they are also called opening tags and closing tags).
Example of a simple HTMl coding:

 
<html> 
<head> 
  <title> Sample Web page </title> 
</head>
<body> 
  <p> Here is a paragraph  </p> 
</body> 
</html>



No comments:

Post a Comment