HTML Comments Comments are used in the HTML source to comment lines of code or to put notifications in the source page. Comments are ignored by the browser. The HTML comments uses the following syntax: HTML Comments <!DOCTYPE html> <html> <head>...
HTML iFrames HTML iframe is used to display a web page within a web page. HTML iframes defines an inline frame. An HTML iframe is defined with the <iframe> tag. The HTML iframe tag can have the following attributes: The src...
HTML Forms HTML form displays html input elements like: text fields, password fields, checkboxes, radio buttons, buttons, menus etc. The <input> element is the most important form element, the input element defines an input control. The HTML <input> tag can have...
HTML Colors You can use HTML colors to set background of the web page, to set the background color for HTML elements like heading, paragraph, table. You can use HTML colors to set text color or border color. HTML Colors <!DOCTYPE...
HTML Image To insert a picture into a web page, use the img tag. The HTML img tag can have the following attributes: The src attribute is used to provide the URL for a image. The alt attribute is used to...