HTML Tutorial for Beginner – Iframes
Syntax for adding an iframe: <iframe src=”URL“></iframe> The URL points to the location of the separate page. Iframe – Set Height and Width The height and width attributes are used to...
View ArticleHTML Tutorial Series for Beginner – Colors
Color Values HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB). The lowest value that can be given to one of the light sources is...
View ArticleHTML Tutorial for Beginner – Color Names
Color Names Supported by All Browsers 147 color names are defined in the HTML and CSS color specification (17 standard colors plus 130 more). The table below lists them all, along with their...
View ArticleHTML Tutorial for Beginner – JavaScript
The HTML <noscript> Tag The <noscript> tag is used to provide an alternate content for users that have disabled scripts in their browser or have a browser that doesn’t support client-side...
View ArticleHTML Tutorial for Beginner – Entities
Some characters are reserved in HTML. It is not possible to use the less than (<) or greater than (>) signs in your text, because the browser will mix them with tags To actually display reserved...
View ArticleHTML Tutorial for Beginner – URL Encode
Common URL Schemes The table below lists some common schemes: Scheme Short for…. Which pages will the scheme be used for… http HyperText Transfer Protocol Common web pages starts with http://. Not...
View ArticleHTML Tutorial for Beginner – Quick List
HTML Basic Document <!DOCTYPE html> <html> <head> <title>Title of document goes here</title> </head> <body> Visible text goes here… </body> </html>...
View Article