Category Archive for: HTML

HTML Forms

HTML Forms allows us to get data from the user level. A simple example is any application form you are filling online such as passport etc. We can get different kinds of input from user such as text inputs, passwords, radio buttons, check box, submit button, drop down list etc. We can create forms by…

Read More →

HTML Tables

HTML allows us to define tables inside the document by using <table>tag. A table is divided into many rows with the <tr> tag where <tr> stands for table row which specifies the content of the data cell. It may contain other tables, text, list, images etc. Each row can be sub divided into data cells…

Read More →

HTML Images

HTML allows us to display an image on a page (not as background).   If you want to display an image on a page, you need to use the imgsrc attribute i.e. image source.   Src contains the value of the URL of the image that you want to display on the page.   NOTE:…

Read More →

HTML Links

Links are nothing but which is used to refer another document or web page. HTML uses the <a>anchor tag to create a link. In all browsers by default, links will appear as follows: An unvisited linkwhich is underlined and colored blue An active linkwhich is underlined and colored red A visited linkwhich is underlined and…

Read More →

HTML List

HTML provides three kinds of list. They are i)             Ordered List ii)            Unordered List iii)           Definition List   Ordered Lists: It is one of the way to list items with numbers. An ordered list should start with the <ol>tag. Each list item should start with the <li>tag. Example: <ol><li>Coders</li><li>Hackers</li></ol> Output: Coders Hackers Unordered Lists:  It…

Read More →

HTML Colors & Backgrounds

Backgrounds are nothing but it’s either an image or some colors. BG color <bgcolor> This attribute specifies the background color for a particular HTML page. It can be defined either in three ways. They are By hexadecimal number, By RGB value, By color name Eg:   Hexadecimal number<body bgcolor=”#FFFF00 “> RGB value <body bgcolor=”rgb(255,255,0)”> Color name<body…

Read More →

HTML Character Entities

Some characters have a special meaning in HTML. If we want the browser to actually display these characters we must insert character entities in place of the actual characters themselves.   Some of them are   I)             Less than (<) – &lt; II)           Greater than (>) – &gt; III)         Ampersand (&) – &amp; IV)          Apostrophe…

Read More →

HTML Formatting

HTML uses many tags for formatting, like bold or italic text.These HTML tags are called formatting tags. <b> or <i>defines bold or italic text. It is not same as <strong> or <em>. It simply means the text should have given some importance than other. Changing Font color HTML allows you to change the color of…

Read More →

HTML Paragraphs & Headings

The p tag is for ‘paragraph‘.   HTML provides only one level of paragraph but you can alter the size of the text inside the paragraph. Inside the <p> tag you can give many number of attributes.   For example,  <p>This is my first website</p> <p>ProgrammingTute</p> Output:  This is my first website ProgrammingTute Look at…

Read More →

HTML Elements & Attributes

HTML elements form the building blocks of all websites. Everything that comes in-between and includes the tag is defined as element of that particular tag. For example, <HTML> Element – Contains element of the whole document. <HEAD> Element –Contains the title of the document i.e. <title>ProgrammingTute</title>   You will see that ProgrammingTute will appear on the…

Read More →

Back to Top