The document contains multiple HTML programs demonstrating various elements and structures, including basic tags, lists, a class timetable, frames, and a registration form. Each section showcases different HTML features such as ordered and unordered lists, tables, audio and video controls, and form elements. The programs are structured to illustrate practical applications of HTML in web development.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
3 views5 pages
Basic HTML Progs
The document contains multiple HTML programs demonstrating various elements and structures, including basic tags, lists, a class timetable, frames, and a registration form. Each section showcases different HTML features such as ordered and unordered lists, tables, audio and video controls, and form elements. The programs are structured to illustrate practical applications of HTML in web development.
A. Ordered List. B. Unordered List. C. Definition List. List.html <html> <head> <title> Types of Lists </title> </head> <body> <center> <h1> Types of Lists </h1> <h3> Ordered List </h3> <ol > <li type="1"> Item 1 </li> <li type="A"> Item 2 </li> <li type="a"> Item 3 </li> <li type="I"> Item 4 </li> </ol> </center> <left> <h3> Unordered List </h3> <ul > <li type="square"> Item 1</li> <li type="circle"> Item 2</li> <li type="rectangle"> Item 3</li> <li type="disc"> Item 4</li> <ul> </left> <left> <h3> Definition List </h3> <dl> <dt>HTML</dt> <dd> Html stands for Hypertext Markup Language. It is used to display the document in the web browsers. Html pages can be developed to be simple text or to be complex multimedia program containing sound, moving images and java applets..</dd> <dt>TABLES </dt> <dd> The main use of table is that they are used to structure the pieces of information and to structure the whole web page.</dd > </dl> </left> </body> </html> 3. Write an HTML Program to Create Your Class TimeTable <html> <head> <title> table page</title> </head> <body bgcolor="cyan"> <table align="center" cellpadding="2" cellspacing="2" border="2" bordercolor=red> <caption><h1>J.NARESH KUMAR</h1></caption> <th><IMG SRC="download.jpeg" height="40"width="40"</th> <th>1<br>9:20-10:15</th> <th>2<br>10:15-11:05</th> <th>3<br>11:05-11:55</th> <th>4<br>11:55-12:45</th> <th rowspan=7>Lunch</th> <th>5<br>1:30-2:20</th> <th>6<br>2:20-3:10</th> <th>7<br>3:10-4:00</th> <tr> <td>MON</td> <td>WT</td> <td>CG</td> <td>DWDM</td> <td>NS</td> <td>CF</td> <td>ES</td> <td>REMEDIAL</td> </tr> <tr> <td>TUE</td> <td>NS</td> <td>CG</td> <td>WT</td> <td>DWDM</td> <td COLSPAN=3><----WTLAB----></td> </tr> <tr> <td>WED</td> <td>ES</td> <td COLSPAN=2><-CSA/NPTEL-></td> <td>CG</td> <td>CF</td> <td>DWDM</td> <td>ES</td> </tr> <tr> <td>THU</td> <td>CF</td> <td COLSPAN=3><--ES/DW LAB--></td> <td>INTERNET</td> <td>NS</td> <td>DWDM</td> </tr> <tr> <td>FRI</td> <td>DWDM</td> <td>NS</td> <td>SPORTS</td> <td>CG</td> <td>CF</td> <td>WT</td> <td>NS</td> </tr> <tr> <td>SAT</td> <td>CG</td> <td>ES</td> <td>WT</td> <td>LIBRARY</td> <td COLSPAN=3><--ES/DW LAB--></td> </tr> <tr> </table> </body> </html>
4. Write an HTML Program to combine 3 HTML Programs
using Frames <html> <head> <title>HTML Frames - An Advanced Frame Layout</title> </head> <frameset rows="20%,80%" border="10"> <frame src="HTML.html" name="frame1"> <frameset cols="25%,75%"> <frame src="List.html" name="frame2"> <frame src="TimeTable.html" name="frame3"> </frameset> </frameset> </html> 5. Write an HTML Program to Create Registration Form
Introduction to C Programming for the Microsoft IT And Computer CLXXII 3rd Edition by Robert Lafore 8175152699 9788175152694 - The complete ebook version is now available for download