0% found this document useful (0 votes)
15 views3 pages

Web Page

HTML uses tags like <html> and <body> to structure web pages. Common tags include those for headings, paragraphs, lists, tables, and embedding images. Tables are created using <table>, <thead>, <tbody>, <tr>, and <td> tags. Lists can be ordered using <ol> and <li> tags or unordered using <ul> and <li> tags.

Uploaded by

Muhammad Farhad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views3 pages

Web Page

HTML uses tags like <html> and <body> to structure web pages. Common tags include those for headings, paragraphs, lists, tables, and embedding images. Tables are created using <table>, <thead>, <tbody>, <tr>, and <td> tags. Lists can be ordered using <ol> and <li> tags or unordered using <ul> and <li> tags.

Uploaded by

Muhammad Farhad
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Web Page

HTML (Hyper Text Markup Language)


Tags:
• Singular <single tag>
• Double <starting tag>
</closed tag>

Tools:
• Sublime Text
• Notepad++

Web Page Pattern:


• <html>
• <head>
• </head>
• <body>
• </body>
• </html>

<html> <table> <section> <em> <source>


<body> <tr> <article> <b> <video>
<head> <td> <abbr> <del> <trac>
<title> <th> <address> <option> <thead>
<p> <header> <article> <label> <tbody>
<h1> <footer> <base> <field set> <tfoot>
<h2> <b> <button> <map> <col>
<h3> <big> <dl> <area> <colspan>
<h4> <br> <form> <conves> <rowspan>
<h5> <hr> <input> type= <figure> <colgroup>
<h6> <strong> <text area> <picture> <script>
<ol> </doctype> <i> <link> <div>
<li> <a herf= alt= <nav> <dd>
<dl> <img src= <object> <audio>
Create Table in html:
<table>
• <thead> = Table Head
<thead> • <tbody> = Table Body
• <tr> = Table Row
<tr>
• <th> = Table Head column
<th>&nbsp</th> • <td> = Table Column
• &nbsp = Space
<th>&nbsp</th>
<th>&nbsp</th>
</tr>
</thead>
<tbody>
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
<tr>
<td>&nbsp</td>
<td>&nbsp</td>
<td>&nbsp</td>
</tr>
</tbody>
</table>
Create List in html:
<ul>
• <ul> = Un-order List
<li>Mobile</li> • <ol> = Order List
<li>Laptop</li> • <li> = List Item

<li>Speaker</li>
Un-order List looks like:
<li>Mouse</li>
• Mobile
<li>Keyboard</li> • Laptop
• Speaker
<li>USB</li> • Mouse
• Keyboard
<li>Printer</li> • USB
• Printer
</ul>
Order List Looks Like:

1. Mobile
<ol> 2. Laptop
3. Speaker
<li>Mobile</li> 4. Mouse
5. Keyboard
<li>Laptop</li> 6. USB
7. Printer
<li>Speaker</li>
<li>Mouse</li>
<li>Keyboard</li>
<li>USB</li>
<li>Printer</li>
</ol>

You might also like