Tugas Individu Web Programming II
1. Form pada HTML <!DOCTYPE html> <html> <body> <h2>HTML Forms</h2> <form action="/action_page.php"> First name:<br> <input type="text" name="firstname" value="Andika"> <br> Last name:<br> <input type="text" name="lastname" value="Yosandi"> <br><br> <input type="submit" value="Submit"> </form> <p></p> </body> </html> 2. Heading dan Paragraf <!DOCTYPE html> <html> <title>HTML Tutorial</title> <body> <h1>Welcome (Heading)</h1> <p>Please Introduce your self ! (Paragraph)</p> </body> </html> 3. Input Element <!DOCTYPE html> <html> <body> <h2>The input Element</h2> <form action="/action_page.php"> Enter your name: <input name...
