
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 10483 Articles for Web Development

4K+ Views
Use the tag to add date and time. The HTML tag is used for displaying the human readable date and time.The HTML tag also supports the following additional attribute −AttributeValueDescriptiondatetimedatetimeIt is a machine readable date timeExampleYou can try to run the following code to learn how to add date and time in HTML5 − HTML time Tag The time is 08:30 pm

24K+ Views
Use the tag in HTML to add a variable. The HTML tag is used to format text in a document. It can include a variable in a mathematical expression. Example You can try to run the following code to add a variable in HTML − HTML var Tag The equations: 2x - 4z = 2y + 3 and x + 5z = 3y + 6

536 Views
The HTML tag is used to underline a text. You can try to run the following code to create underlined text in HTML −Note − This tag is deprecated now and should not be used. Use CSS instead.Example HTML u Tag Qries.com is the next generation knowledge management system.

861 Views
In this article, we will learn to add a table row in HTML. Tables are a fundamental part of web development, used to display structured data in rows and columns. In HTML, you can add table rows using the (table row) element inside a structure. Attributes The HTML tag also supports the following additional attributes − Attribute Value ... Read More

563 Views
Use the tag in HTML to create table header. The HTML tag is used in adding a header to a table. The thead tag is used in conjunction with the tbody tag and the tfoot tag in determining each part of the table (header, footer, body).The HTML tag also supports the following additional attributes −AttributeValueDescriptionalignrightleftcenterjustifycharDeprecated − Visual alignment.charcharacterDeprecated − Specifies which character to align text on. Used when align = "char"charoffpixels or %Deprecated − Specifies an alignment offset (either in pixels or percentage value) against the first character as specified with the char attribute. Used when align = "char"valigntopmiddlebottombaselineDeprecated − Vertical ... Read More

314 Views
Use the tag to add document title. The HTML tag is used for indicating the title of the HTML document. The body title is placed between the and the tags.ExampleYou can try to run the following code to learn how to add document title in HTML − Title comes here title tag is used for indicating the title of the HTML document. HTML document title is visible via browser’s title bar.

713 Views
Use the tag in HTML to create a heading. The HTML tag is used for specifying a header cell or table header within a table.The following are the attributes −AttributeValueDescriptionabbrabbreviated_textDeprecated − Specifies an abbreviated version of the content in a header cell.alignrightleftcenterjustifycharDeprecated − Content alignment in header cell.axisNameDeprecated − Specifies a category for this th.bgcolorrgb(x, x, x)#hexcodecolornameDeprecated − Specifies the background color of the header cell.charCharacterDeprecated − Specifies which character to align text on. Used when align = "char"charoffpixels or %Deprecated − Specifies an alignment offset (either in pixels or percentage value) against the first character as specified ... Read More

298 Views
In this article we are going to learn about how do we include an acronym in HTML. Let’s jump into the article one by one to get more idea. In HTML, the acronym is defined using the tag. An additional word is spelled out using the tag. It serves as a resource for search engines, translation services, and browsers. Note − use the Tag because HTML 5 does not allow this tag. Syntax Following is the syntax for acronym. Short Form Considering the following examples, to know more about how do we include an acronym ... Read More