Saturday 14 December 2013

Tutorial on HTML

Designing a web page can be made easy with HTML. To create and to code in HTML you need to know about a web page. As documents and files has some extensions like .doc and etc., a webpage also has an extension, .htm or.html. Using this extension you can clearly identify a webpage.

Where to HTML?
HTML can typed or coded in simple text editors like notepad or notepad++.


One advantage of HTML is that, it is not case sensitive.So that you can code at your ease.

Basic HTML tags:

<html>
<head>
<title>
<body>
<p>
<b>
<i>
<u>
<li>
The use and purpose of these tags will be discussed in later sessions.

Sample HTML code:

<html>
<head>
<title>MY FIRST WEB PAGE</title>
</head>
<body>
<p>This is my first web page and this is my first paragraph</p>
</body>
</html>

Sample output:

MY FIRST WEBPAGE
This is my first web page and this is my first paragraph

No comments:

Post a Comment