How to create first HTML page.
Basic HTML
- 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.
- 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.
- 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>
No comments
Post a Comment