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...