Wednesday 4 March 2015

How to create first HTML page.

How to create first HTML page. Basic HTML HTML program should be written within <html> and </html> tag. ... thumbnail 1 summary


How to create first HTML page.

Basic HTML

  1. HTML program should be written within <html> and </html> tag. The <html> tag indicate the start of html program and </html> denotes end of html program.
  2. Any html program has two parts: head and body. The head part acts as a header of a file and contains some information like title of Web page.
  3. The body part of html program will help us to create a look and feel of the web page.
<html>
<head>
            <title>my first page</title>
</head>
<body>
            This is my first webpage.
</body>
</html>

Output:-

This is my first webpage.


No comments

Post a Comment