HTML Manual
HTML Manual
Data System
Simplified Computer Training
Since 1992
HTML
© Copyright Notice
P. N. Data System 1
Lesson – 1 – Website Fundamentals
2. Web Server
3. Client
Frontend
Frontend means on client computer how web page appear. To create a frontend we use HTML,
CSS, JavaScript, jQuery, AJAX, Fireworks, Flash, Photoshop, Corel Draw, Illustrator etc. tools.
Backend
Backend means a programing for business logic on web server. To create a backend
programming we use [Link], JSP, PHP, C#.net, [Link], Java, SQL Server, Oracle etc. tools.
Readymade Websites
You can use Blogger, WordPress, Drupal or Joomla to create readymade quick websites.
P. N. Data System 2
Lesson – 2 – HTML Fundamentals
Container tag contains other tags or text and start with normal tag like <html> and ends
with / like </html>
(3) Attributes
Attributes are the extra information about tag and it comes between < >
P. N. Data System 3
Lesson – 3 – Basic Commands Part 1
<html> </html>
This tag is used to show starting and ending point of HTML page or document. All other tags
must me enclosed inside these two tags.
<head> </head>
<body> </body>
P. N. Data System 4
<title> </title>
This tag comes under head section and use change browser’s title line.
<p> </p>
<hr>
<br>
Break a line.
P. N. Data System 5
Lesson – 4 – Basic Commands Part 2
<b> </b>
Bold text
<i> </i>
Italic text
<u> </u>
Underline text
<sub> </sub>
Ex. H2O
<sup> </sup>
Super script.
Ex .H2O
<font> </font>
With this tag you can change font size, color etc.
P. N. Data System 6
Lesson – 5 – Lists
<ol> </ol> Ordered List
This tag is used to create sequential list. Each option of list must be shown with <Li> tag.
• To change list numbering use type=”A”, “a”, “I”, “i”, or “1” attributes.
• To change list starting no use start =”5” attributes.
P. N. Data System 7
Lesson – 6 – Tables
<table> </table>
This tag is used to show starting and ending point of table, all other table related tags comes
under this tag.
This tag is used to show starting and ending point of table row <td>, <th> tags comes under this
tag.
• border = “3”
• bordercolor = “red”
• cellpadding = “10”
• cellspacing = “10”
P. N. Data System 8
Attributes which comes under <table> and <tr>
• height =”70%”
• width = “70%”
• bgcolor = “Pink”
P. N. Data System 9
Lesson – 7 – Images
To bring image on the web page
P. N. Data System 10
Lesson – 8 – Links
To create links use <a href = “[Link]”> any word </a> tag. Here [Link] is a target
file. When you click on any word with Mouse target file will be opened.
P. N. Data System 11
Lesson – 9 – Form
<form> </form>
This is a main tag for creating user input form. All other forms related tags enclose under these
two tags.
To display single line text box, you can increase or decrease box size with size attribute. You can
control inputted character length by maxlength attribute.
To create a multiple option round button, Variable for all option must be same; text will
appear as an option text.
Note:
Type “Checked” word inside tag to select that option when page is first loaded.
To create push button and value text will be appear on the button. This button is used to
submit form data to the server.
P. N. Data System 12
<input type = “reset” value = “Clear Data” >
To create multiline text box. You can control height and width of box with rows and cols
attribute.
<select> </select>
To create drop down list. You can type each option to the list with <option> tag, Type selected
word inside any one option which you want as first selected option.
P. N. Data System 13
Lesson – 10 – HTML5 Other Tags
<!doctype html>
<meta charset="UTF-8">
This tag shows character set to the search engines and browsers.
P. N. Data System 14
<iframe src="website name" width="600" height="400" seamless>
</iframe>
P. N. Data System 15
Lesson – 11 – HTML5 Audio and Video Tags
</audio>
</video>
P. N. Data System 16