This document provides instructions on how to create basic HTML elements like headings, paragraphs, horizontal rules, and tables using Notepad. It explains how to open Notepad, type HTML tags and content, save the file with a .html extension, and view the rendered page in a web browser. Key elements covered include <h1>-<h3> headings, <p> paragraphs, <hr> horizontal rules, <table>, <tr>, and <td> table cells. The document also discusses using browser developer tools to view the source code and check for errors in the HTML tags.
17. Table..
For table cell the code is
For easy recognise arrange like this by pressing enter & space
<table>
<tr>
<td></td>
</tr>
</table>
18. Table..
My instruction to you
td stands for
Table Cell
Your code on note pad
<table>
<tr>
<td></td>
</tr>
</table>
19. Table..
My instruction to you
then type one 1 in the table
cell
Then save and see
Your code on note pad
<table>
<tr>
<td>1 </td>
</tr>
</table>
20. Table..
My instruction to you
For new cell Make new sell
Type kaki in new sell
Then save and see
Your code on note pad
<table>
<tr>
<td>1 </td>
<td>kaki</td>
</tr>
</table>
21. Table..
My instruction to you
For new row type new row
Then make new cell in <tr>
command
Your code on note pad
1. <table>
2. <tr>
3. <td>1 </td>
<td>kaki</td>
4. </tr>
5. <tr> <td></td> </tr>
6. </table>
22. Table..
My instruction to you
Then type a new name alok
in that new cell
Then save and see
Your code on note pad
1. <table>
2. <tr>
3. <td>1 </td>
<td>kaki</td>
4. </tr>
5. <tr> <td>alok </td> </tr>
6. </table>
23. Table..
My instruction to you
And then add new cell
<td></td>
Then save and see
Your code on note pad
1. <table>
2. <tr>
3. <td>1 </td>
<td>kaki</td>
4. </tr>
5. <tr> <td>alok </td> </tr>
6. </table>
24. Table..
My instruction to you
And then add new cell
<td></td>
Then save and see
Your code on note pad
1. <table>
2. <tr>
3. <td>1 </td>
<td>kaki</td>
4. </tr>
5. <tr> <td>alok </td> </tr>
6. </table>
25. For better understinging
Add border
Go to <table> line
Then change it to <table border=1>
Then save and see
26. View the sourse code
To view your sourse code
Press ctrl+U on your browser
1. <table>
2. <tr>
3. <td>1 </td>
<td>kaki</td>
4. </tr
5. <tr> <td>alok </td> </tr>
6. </table>
27. Then save and
Now see some thing wrong
To check it
28. What is the sourse code ?
Sourse code is the file that is uploaded on
your browser..
29. What is the benefit to see it..?
Any thing wrong with your code will be red in
color
And it will help you to identify..
30. Lets check it..
Go to note pad
Make some error with tags
Any tag (<>)