
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 2202 Articles for HTML

2K+ Views
Adding Ordered Unordered Lists To define a list item in HTML, use the tag. It can be used inside ordered lists (), unordered lists () and menu lists (). In an ordered list , the list items are displayed with numbers or letters. In an unordered list , and a menu list , the list items are displayed with bullet points. Syntax Following is the syntax list item in HTML − ……… The list tag also supports the following additional attributes − ... Read More

3K+ Views
In HTML the tag is used to add a resource reference. The link defines the relationship between the external document and current document. The tag is also used to link external style sheets and to add favicon to our websites, tag consists of attribute values. Following is the usage of tag in HTML - The tag is supported by almost all browsers and it also supports global and event attributes. Attributes Attributes of the tag are shown below − crossorigin − The value of crossorigin attribute is anonymous use-credentials, ... Read More

3K+ Views
We can add a layer to an HTML document using the tag in HTML. Once we have created a layer using this tag, then we can manipulate it using JavaScript. This tag is used to position and animate (through scripting) elements in a page. A layer can be thought of as a separate document that resides on top of the main one, all-existing within one window.Following is the usage of tag in HTML - Attributes of the tag Above − The above attribute in layer tag specifies the name of above layer when compared ... Read More

762 Views
In HTML the tag is used to include/define a title for a tag. Before proceeding further let us understand what is a fieldset. A fieldset is an element in HTML, used for grouping related elements. It is helpful to user if form fields are arranged in logical groups. To differentiate the look from other parts of web page, it adds a border around the related elements. Following is the syntax of the fieldset in HTML .... Attributes of the tag Following are the attributes of the tag – disabled − Disabled is an attribute ... Read More

556 Views
In HTML the tag is used to define labels for serval elements like , , , , . Syntax Following is the usage of tag in HTML − form content... The tag uses for and form attributes, now let us see the values and description of for and form attributes. for − It specifies the id of form element the label is associated with. Following is the syntax of ... Read More

726 Views
The tag in HTML is a horizontal rule, defines a thematic break in an HTML page. It is often used to display a horizontal rule to separate the content or to change the display of content in an HTML page. It consists of only opening tag in HTML. Syntax The usage of tag in HTML is shown below − ……… The HTML tag supports following additional attributes − Attribute Value Description align left center right Specifies the alignment of the horizontal rule. noshade Noshade Removes the ... Read More

662 Views
In HTML the text can be represented in italic using tag. The text present in between tag open and closing is represented in italic format. tag is called as Idiomatic text element. Syntax Usage of tag in HTML is shown below − Hello Welcome to My World In the above syntax, the sentence between open and close tag represent in italic format. Hello Welcome to My World. If we want to represent phrases that are present in different languages than their surroundings, ... Read More

225 Views
Use the tag to include information about the document. The HTML tag is used for indicating the head section of the HTML document. Tags included inside head tags are not displayed in the browser window.ExampleYou can try to run the following code to include information about the document in HTML − HTML head Tag This is demo text.

691 Views
Fieldset is an element in HTML, used for grouping related elements. It is helpful to user if form fields are arranged in logical groupings. To differentiate the look from other parts of web page, it adds a border around the related elements. tag is used to define a caption for . It supports global as well as event attributes. It is compatible with all browsers. Syntax Following is the usage/syntax of fieldset in HTML .... The attributes used in fieldset are shown below Attributes are used in fieldset to perform the following functionaries − disabled − ... Read More

328 Views
To add a container for an external application in HTML5 we use tag. It defines or embed a container for an external resource like, web pages, media player, pictures or a plug-in application. Following is the usage of embed tag in HTML − It doesn’t have closing tag. The browsers that support embed tag are google chrome, Internet explorer, Firefox, Apple Safari, Opera. It supports, global and event attributes in HTML. Most of the browsers display the element with default CSS settings like embed:focus { outline: none; } Attributes Now, ... Read More