Category: HTML

HTML Tutorial

Beginner HTML Tutorial – Learn how to create HTML web pages. Learn the basics of HTML language: paragraph, headings, attributes, tables, lists, forms, colors. The HTML document starts with <html> and ends with </html>. The visible part of the HTML document...

HTML Comments

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

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