Introduction to HTML

Language use to design web pages using pre-defined mark-up tags. It is very simple and case-insensitive language. We have freedom to write the tags in any case but the we should properly use start and end tags. Its extension is .html or .htm. Notepad, editpad, etc are the editors where we write the tags and save it. We use html files to run applets in web browser. So it is important to learn its basic. Here is an example of html program :


<html>
<head>
<title>Title of The HTML FIle</title>
</head>
<body>

My first program in HTML. <u>This tag is use to underline
the text.</u>
</body>
</html>


0 comments: