Popular posts from this blog
Lab 6 : Fundamentals of web technology
1. <!DOCTYPE html> - Defines the document type. <h2> - Defines HTML headings. <br> - Defines single line break. <label> - Defines a label for an <input> element. <p> - Defines a paragraph. <form> - Defines an HTML form for user input. 2. <!DOCTYPE html> <html> <body> <h2>LAB-06 HTML Forms</h2> <form action="/action_page.php"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" value=""> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname" value=" "><br><br> <label for="id">ID:</label> <input type="text" id="id...
Lab 8 : Fundamentals of web technology
1. The <dl> tag defines a description list. The <dt> tag defines a term/name in a description list. The <dd> tag is used to describe a term/name in a description list. The <div> tag defines a division or a section in an HTML document. 2. <!DOCTYPE html> <html> <body> <div style="background-color:lightblue"> <h3> Q2- LAB-08 </h3> <p>--------------------------------------.</p> </div> <div style="background-color:yellow"> <dl> <dt>Coffee</dt> <dd>Black hot drink</dd> <div style="background color:lightgreen"> <dt>Milk</dt> <dd>White cold drink</dd> </div> </dl> </body> </html> ...
Comments
Post a Comment