answersLogoWhite

0


Best Answer

face ,color,size.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

6mo ago

Some of the attributes that can be used along with the font tag in HTML are:

  • size: to specify the size of the font, such as "1" (smallest) to "7" (largest).
  • color: to define the color of the text, using a named color, hexadecimal value, or RGB value.
  • face: to specify the font family to be used, such as "Arial", "Times New Roman", or a generic font like "serif" or "sans-serif".
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the attributes can be used along with font tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the difference between base font and font tag?

Base font is an HTML tag that specifies the font you want to use throughout your document: <basefont face="arial, verdana, courier" size="4" color="green"> In this example the browser of the user will select the first available font of the list to display the text. The font tag is an older HTML tag but is no longer recommended although it still works. This is an example of its use: <p> <font size="3" face="verdana" color="blue"> This paragraph is in Verdana, size 3, and in blue text color. </font> </p> This is the Wikipedia explanation for tag: In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. Tags are composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket, to distinguish it from the start tag. For example, a paragraph, which is represented by the p element, would be written as


All tags and its attributes with example in HTML?

A start tag will contain the content followed by the end tag The values specify the properties of the attribute which provide additional information about HTML element. For example: the element Font will have an attribute to define the color of the font, and the value will be the color. This information is used in the start tag. This is arial font ="arial" is the value. (Element Attribute= "value"> General values could include size= "2" ( "2" is the value to define the size of the font in pixels) or color = "000000" (="000000" is the value to define the color of the font)


Which attributes is used with TR tag?

The TR (Table Row) tag is part of the <table> tag family. It has several attributes. You format the attributes like this: <tr attribute="whatever">. Here are the attributes for the <tr> tag for HTML 4 and earlier: * align (right, left, center, justify, char) * bgcolor (#xxxxxx, colorname) * char (character) * charoff (number) * valign (top, middle, bottom, baseline) NOTE: These attributes are not supported in HTML 5.


To specify a font for your whole page add which tag?

base font


What are the attributes of a firefighter?

There can be various attributes of an element. Firefighter could be a custom tag with various attributes.

Related questions

Different types of attributes?

the size attribute to change the size of the text in our web page .the starting tag is <font>and the ending tag is </font>


What are attributes in HTML?

Attributes are additional settings for tags to tell the tag what you want it to. Lots of tags can have several possible options as to what they can do, and the attributes tell it what it wants to do. The Body tag has attributes to do things like set the colour of the background of the body of the page. The font tag has attributes to tell it what colour the font should be, the size of the font and which particular font to use. If you are doing a line, you need to tell how wide it is and how thick it is, and also its colour. Colours being set is a common attribute in many fonts.


In HTML each tag is included within?

In HTML all tags are included within the angled braces "<>" for example the tag to set the font of the text displayed in a web page is the "Font" tag and if you want to use it in your web page you will use it like: <Font> </Font> The Font tag has attributes that you can set in the first set of angled braces <Font> and all the text that is typed until the </Font> tag is encountered.


What is the difference between base font and font tag?

Base font is an HTML tag that specifies the font you want to use throughout your document: <basefont face="arial, verdana, courier" size="4" color="green"> In this example the browser of the user will select the first available font of the list to display the text. The font tag is an older HTML tag but is no longer recommended although it still works. This is an example of its use: <p> <font size="3" face="verdana" color="blue"> This paragraph is in Verdana, size 3, and in blue text color. </font> </p> This is the Wikipedia explanation for tag: In the HTML syntax, most elements are written with a start tag and an end tag, with the content in between. Tags are composed of the name of the element, surrounded by angle brackets. An end tag also has a slash after the opening angle bracket, to distinguish it from the start tag. For example, a paragraph, which is represented by the p element, would be written as


What is the name of the additional information placed inside a tag that controls how the tag is used?

The information contained within the opening portion of an HTML tag that controls various attributes of the tag is called the tags "attributes."Attributes follow the format attribute="value" and are added to the tag after it's opening. For instance:In this case, the image tag has two attributes, the src attribute and the alt attribute. The values of those attributes are "a.png" and "A" respectively.


All tags and its attributes with example in HTML?

A start tag will contain the content followed by the end tag The values specify the properties of the attribute which provide additional information about HTML element. For example: the element Font will have an attribute to define the color of the font, and the value will be the color. This information is used in the start tag. This is arial font ="arial" is the value. (Element Attribute= "value"> General values could include size= "2" ( "2" is the value to define the size of the font in pixels) or color = "000000" (="000000" is the value to define the color of the font)


What option allows you to change the font color font type and heading styles for a cell's content?

The <style> tag can be used for changing font color and type. It can be used internally or in in-line too.


Which attributes is used with TR tag?

The TR (Table Row) tag is part of the <table> tag family. It has several attributes. You format the attributes like this: <tr attribute="whatever">. Here are the attributes for the <tr> tag for HTML 4 and earlier: * align (right, left, center, justify, char) * bgcolor (#xxxxxx, colorname) * char (character) * charoff (number) * valign (top, middle, bottom, baseline) NOTE: These attributes are not supported in HTML 5.


How was the font tag used in HTML?

The font tag is no longer supported in HTML. It was deprecated in HTML 4.01, XHTML 1.0, and is completely unsupported in HTML 5.In HTML versions prior to 4.01, the font tag was used to set the size, color, and font face of the text it encompassed. The font tag had three attributes: color, face, and size.The color attribute defined the color of the text. It accepted 16 named colors (i.e. "red") as well as a complete hexadecimal RGB value (i.e. #FF0000)The size attribute defined the size of the font using a relative sizing system that assigned the text 7 sizes. The larger the number, the larger the text. The default size for the browser was 3.The face attribute was used to define which font you wanted the text to use. You could also add a list of different font names, separated by commas (i.e. "verdana,arial,sans-serif")Here is an example of font tag usage:This text would be one size up from the browser default; Helectiva, unless it wasn't available on the local machine, then Arial, and then the default sans-serif for the OS; and colored an aquamarine color.


What is the use of basefont tag in HTML?

The basefont tag was used in versions of HTML prior to HTML 4.01. In HTML 4.01 it was deprecated. It is not supported in XHTML 1.0, nor in HTML 5. It was used to describe the font for an entire document. Later font tags would override this declaration. Currently, the basefont tag is only supported by Internet Explorer. A developer should use CSS to replicate its function (similar to the <font> tag.)


To specify a font for your whole page add which tag?

base font


What are the attributes of a firefighter?

There can be various attributes of an element. Firefighter could be a custom tag with various attributes.