Found 8591 Articles for Front End Technology

How do we add document title in HTML?

varma
Updated on 02-Mar-2020 12:28:36

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.    

How to create table heading in HTML?

V Jyothi
Updated on 02-Mar-2020 12:20:32

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

How to include an abbreviation in HTML?

Nishtha Thakur
Updated on 02-Mar-2020 12:18:45

210 Views

The HTML tag is used for indicating an abbreviation. You can try to run the following code to learn how to include an abbreviation in HTML −Example        HTML abbr Tag                     pvt.             WHO       promotes the global game.                

How to include an acronym in HTML?

Yaswanth Varma
Updated on 15-Dec-2022 14:30:22

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

How do we include an anchor in HTML?

Yaswanth Varma
Updated on 15-Dec-2022 14:29:24

480 Views

In this article we are going to perform the task of how do we include an anchor in HTML. Let’s dive into the article to know mpore about anchor in HTML. The anchor element is used to link a source anchor to a destination anchor. The destination is the resource that the source anchor connects to, while the source is the text, picture, or button that points to another site. The hyperlinks are one of the key technologies that make the internet the information superhighway. To understand better on how do we include an anchor in HTML, let’s look into ... Read More

How to create table footer in HTML?

Yaswanth Varma
Updated on 15-Dec-2022 14:26:35

2K+ Views

The task we are going to perform in this article is how to crete table footer in HTML. As we are familiar with table in HTML, let’s have quick look on it. A table in HTML makes a lot of sense when you want to organize data that would look best in a spreadsheet. A table is a visual representation of rows and columns of data. You may organise data like photos, text, links, and more into rows and columns of cells in HTML by using tables. HTML table footer In an HTML table, the tag specifies a group ... Read More

How do we display a text area in HTML?

Yaswanth Varma
Updated on 15-Dec-2022 14:23:07

3K+ Views

The task we are going to perform in this article is how do we display a text area in HTML. Let’s dive into the article for getting a clear idea on how we display text area. An HTML textarea tag defines a multi-line plain-text editing control. The text appears in a set-width font since a text space can carry an endless number of characters (usually Courier). In a form, the textarea is typically used to gather user inputs like comments or reviews. After the form is submitted, the reference in the form data will require the name property. Let’s look ... Read More

How do we display a table cell in HTML

Yaswanth Varma
Updated on 15-Dec-2022 14:21:27

652 Views

In this article we are going to learn about how do we display a table cell in HTML. Before jumping into the article let’s have a look on the HTML table A table in HTML makes a lot of sense when you want to organize data that would look best in a spreadsheet. A table is a visual representation of rows and columns of data. You may organise data like photos, text, links, and more into rows and columns of cells in HTML by using tables. Table Cell in HTML Table cells can span many columns and rows and contain ... Read More

How to display a summary for a given <details> in HTML5?

Sindhura Repala
Updated on 23-Jan-2025 11:55:57

312 Views

The Tag Summary in HTML To display a visible heading for the tag use the tag. Click the heading to hide or view the details. The first child element of the tag is the element. This tag specifies additional details that the user can open and close on demand. The tag is often used to create an interactive element that the user can switch open and close. Syntax Following is the syntax of the summary element − text … The summary tag supports global and event ... Read More

Display subscripted text in HTML

Chandu yadav
Updated on 27-May-2020 22:07:44

192 Views

Use the tag to create subscripted text. The HTML tag is used for defining subscript text like,x1+ x2ExampleYou can try to run the following code to display subscripted text in HTML −           HTML sub Tag               Value of x1 + x2 = 17    

Advertisements