
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

2K+ Views
How to Add a Parameter for an Object in HTML The tag is used to define a parameter of an HTML element. The tag does not contain a closing tag. The tag supports all browsers, but the file format defined in an object may not support it. It also supports the global and event attributes in HTML. Below is the syntax − The tag is deprecated and is no longer recommended. While some browsers might still support it, it has been removed from the relevant web standard and is only maintained for ... Read More

319 Views
Navigational links can be provided by using tag in the document. The links of nav element navigates to other webpages or points to different section of same webpage. Examples of nav element are contents, tables, menus and indexes. Syntax Following is the usage of tag in HTML − Links…… Example Following example where we are trying to create a section that contains only navigation links − TutorialsPoint ... Read More

299 Views
To allow no breaks in the enclosed text in HTML, we will use tag for creating a single line text, it does not bother about how long the statement is. If we want to read whole text a horizontal scroll has to be used. It is exactly opposite to break tag. tag is not supported in HTML5. This tag does not contain any attribute, it is having an open and closed tags. The tag in HTML The HTML tag is used to instruct the browser not to break the specified text. This is used ... Read More

2K+ Views
In HTML tag is used to create multi-column layouts. It has opening and closing tags, . Following is the syntax of multicol tag. …….. Attributes of tag Following are the attributes used in tag − cols The value used for col attribute is number and it specifies how many columns need to be used. Following is the syntax of cols attribute in mutlicol tag. gutter The value used for gutter attribute is px, it specifies the distance between each column in pixels. Following is the Syntax ... Read More

307 Views
To define a scalar measurement within a known range or a fractional value, we use tag in HTML. tag is also called as gauge. For disk usages, relevance of query results etc., we use tag in HTML. The tag is not used to indicate progress bar, If we want to indicate progress bar, we use tag. For best accessibility it’s better to use tag while working on tag. Syntax Following is the usage of tag in HTML − Example Following example where we are trying to define a scalar ... Read More

328 Views
The tag is used to mark or highlight the text in HTML. It is one of the new tags used in HTML5. It supports global and event attributes. we can include tag in between the statement also, like − I play with Coding Syntax Following is the syntax of tag in HTML document − Contents... Example In the following HTML example, we are trying to print some text and highlighting it using the tag in HTML - TutorialsPoint ... Read More

466 Views
To include meta data in an HTML document, we use tag. Metadata provides important information about HTML document. It is used to add value pairs for describing the properties of HTML documents, like document author, list of keywords, expiry date, author name, etc. The meta data consists of only one tag, opening tag . Meta data carries information within its attributes. The tag does not change the physical appearance of document, even though we include one or more meta tags in a web document based on information. Syntax The following is the usage of meta tag in HTML ... Read More

1K+ Views
If we want to create a menu list in HTML, we have to use tag, it is used to defines a list of commands that can be used by the users for creating listing form control, context menus, toolbar, and commands. At present this tag was removed from HTML and again reintroduced in HTML5. On majority of platforms, this tag is not supported on the majority of platforms. Syntax The usage of tag in HTML is shown below − -- --- --- The attributes present in menu tag are shown below ... Read More

2K+ Views
Clickable Areas in HTML To create clickable areas within an image, we use an image map, which is defined using the tag, with both opening and closing tags: . An image is a list that coordinates specific areas of an image, allowing different parts of the image to be hyperlinked to various destinations. These maps enable the server-side image web browser to send information to the server about where the user clicks within an image. Client-side image maps do not require any special logic to be executed on the server, as they do not need any JavaScript. ... Read More

278 Views
To display the main content in the document, we use tag. The tag consists of open and closing tags, the content present in between element is unique to the document, it does not contain any content which is repeated across documents like navigation links, site logos, sidebars and search forms. In a document there should be only one element. The main is not a descendent of , , , or element. The tag supports almost all browsers and it also supports global and event attributes. Syntax Following is the usage of tag in ... Read More