WEB PROGRAMMING

HTML Tutorials

If you want to be a web developer or designer, HTML is a internet programming language basic that it is very easy to learn-you will enjoy it. HTML (Hypertext Markup Language) is the set of markup symbols or codes inserted in a file intended for display on a World Wide Web browser page. The markup tells the Web browser how to display a Web page's words and images for the user. Each individual markup code is referred to as an element (but many people also refer to it as a tag). Some elements come in pairs that indicate when some display effect is to begin and when it is to end.

HTML Syntax:

<!DOCTYPE html>
<html>
<head>
<!--Please write your title page here(This is just example comment but not display on the screen.)-->
<title>Page Title</title>
</head>

<body>
<!--Write text here-->
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>