HTML Basic Form

<!DOCTYPE html><html><head><title>Sample HTML Form</title></head><body><h2>Registration Form</h2><form action="/submit_form" method="post"><label for="fname">First Name:</label><br><input type="text" id="fname" name="fname"><br><label for="lname">Last Name:</label><br><input type="text" id="lname" name="lname"><br><label for="email">Email:</label><br><input type="email" id="email" name="email"><br><label for="birthdate">Birth Date:</label><br><input type="date" id="birthdate" name="birthdate"><br><input type="submit" value="Submit"></form></body></html>Output : Registration FormFirst Name:Last Name:Email:Birth Date: 

Continue ReadingHTML Basic Form

Basic html course for beginners

Module 1: Introduction to HTMLWhat is HTML?HTML (Hypertext Markup Language) is the standard markup language for creating web pages.Basic Structure of an HTML DocumentBasic skeleton of an HTML page.Example:<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body>…

Continue ReadingBasic html course for beginners