
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 8591 Articles for Front End Technology

737 Views
The element in HTML5 is used to display self-contained content (images, videos, etc). This can be attached to the main program, and can be used at any place within the document without impacting the flow of document. Additionally, if we remove the tag, it won’t affect the structure of the document. Syntax The usage of tag in HTML is shown below − Image content... The parameters used in the caption are img, src and figcaption. The tag is used to specify the image source URL when we are including an ... Read More

170 Views
The element in HTML5 is used to add self-contained information like diagrams, photographs or code present in a document. Generally, the figure element attached to the main program, we can use at any place in the document, and we can also remove the tag without impacting the flow of document. The element is used to add caption for the tag element . It is an optional tag placed before or after the tag’s content. The element is used to diagrams, markup photos etc., . The element is used to give caption for element. ... Read More

693 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

332 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

497 Views
To Emphasize the text content in HTML we use tag. It is same as tag. It has closing and opening tags, . The tag is a phrase tag. It renders as emphasized text. Emphasized text The text that is present in between open and closing tags of appears in an italic form. The main difference between italic and emphasized tag is that, emphasized tag semantically emphasizes on section of words whereas tag shows text in italic which indicate alternative mood. The effects of tag can be achieved by using ... Read More

1K+ Views
Section is one of the tag used in HTML, which defines the section of document like header, footers, chapters etc., Section tag divided the content of document into two parts, section and subsections. It is useful when there is a requirement of two headers or footers or chapter or other sections of document needed. Section tag groups the related content in a generic block. It is a semantic element, that describes meaning to browser as well as developer. section has open and closing tags, It supports almost all browsers. Section tag also supports global attributes ... Read More

490 Views
The definition term is represented as tag in HTML, it describes the name or term in a description list. The define term is conjunction with and tags. tag is used to describe each name or term tag defines a description list. define tag supports both global and event attributes. The tag is supported by almost all browsers. Syntax Following is the syntax of define term − code Example Following example of adding a definition term in HTML. Here we are using all the three ... Read More

921 Views
The contenteditable attribute indicates whether or not an element's content is editable. If the content is found to be editable, the browser will allow editing by modifying its widgets. This attribute must always take one of these two values below − true, or an empty string − indicating that the content is editable false − indicating that the content is not editable If the attribute does not take any of the values mentioned above, it is declared an empty string and will, by default, become an editable content. Note − If an element's contenteditable attribute is not ... Read More

2K+ Views
A description list—previously known as a definition list—offers an organised arrangement of a term and its definition. For defining a definition list, the following tags are used − − This is the list of definitions. It stores terms and their definitions as tables of rows and data. − This is the term used to define. It keeps the phrase under definition. − This serves as the description or definition. It contains the definition of a particular term. Using these tags, Following are the examples… Example In the following example we are using , , ... Read More

635 Views
The element is used to add caption to an HTML table. A "caption" must be the first descendant of a parent "table" in an HTML document, however it can be visually positioned at the bottom of the table using CSS. SyntaxTable title... The element contains global attributes and deprecated align attributes (left, right, top, bottom). This element must be used immediately after the table tag is opened as it is a table caption. If a figure needs to be captioned instead of a table use . Following are the examples… Example In the following example we are ... Read More