28Jun/22

HTML Head

The HTML <head> Element The <head> element is a container for metadata (data about data) and is placed between the <html> tag and the <body> tag. HTML metadata is data about the HTML document. Metadata is not displayed.Read More…

01Jun/22

HTML Input Types

Input Type Text <input type=”text”> defines a one-line text input field: <form> First name:<br> <input type=”text” name=”firstname”><br> Last name:<br> <input type=”text” name=”lastname”> </form>   Input Type Password <input type=”password”> defines a password field: <form> User name:<br>Read More…