Introduction to HTML
The HTML languages specifies how a Web page should be displayed in a browser. Using HTML tags and elements, you can:
- Control the appearance of the page and the content
- Publish online documents and retrieve online information using the links inserted in the HTML documents
- Create onlinwe forms which can be used to collect ibformation about user conduct transaction and so on
- Insert object like audio clips, video clips, active X components and java applets in the HTML documents
The HTML documents form the source code of a web page . when viewed in the editor , the docmets is a series of tags and elements that specify how the page is to be displayed . the browser reads the .html/.html file and displays the page according to the specified instruction .
For example, the following HTML syntax will display the messege “my first HTML documents”:
Example 1
<html>
<head>
<title> welcome to HTML</title>
</head>
<body>
<h3> My first HTML documents </h3>
</body>
</html>
0 comments:
Post a Comment