answersLogoWhite

0

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. <font face="arial">This is arial font</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)

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What are values in HTML?

Depends what of values you mean. A value of the length, value as the attribute or value of tags. You have to specify it a bit more. But values may also be the content that is inside a tag.


How will you pass values from HTML page to the servlet?

we are passing values from the HTML to the Servlet by using HTML controls. ex:name,password.......... In servlets we have one method for getting the values from HTML is getParameter() example: String s1=req.getParameter("T1"); String s2=req.getParameter("T2"); in above example T1,T2 are the names of the HTML controls, String is a class and req is the object of the HttpServlet.


How can you get the HTML code from a HTML document?

If you mean HTML website, just check the page source. If you mean a '.html' document, Right click and select Open With and select any text editor.


What is the extension of HTML and xml?

You mean the file extension, right? HTML: .html or .htm XML: .xml


What does u in HTML mean?

&lt;u&gt; in HTML underlines the specified text.


What does the abbrieveation HTML mean?

HTML stands for "Hypertext Markup Language".


What does browser mean in HTML?

A "browser" is a program that can render/read HTML.


Different types of input html?

HTML supports ten input types: button, checkbox, file, hidden, image, password, radio, reset, submit, and text.


What do you mean by HTML header?

HTML header is placed on the top of a HTML page. It is wrapped inside the &lt;head&gt; element.


What is an HTML attribute used for?

In HTML, atttribute provides additional information about HTML element. Attribute of HTML element is written in start tag and usually come in name/value pair e.g. name="value". Attribute names and values are case sensative and it is recommented by W3C to write them in lower case. Some attributes which can be used on any HTML element are: classs, id, style, title etc. Attribute values should always be quoted in single or double quotes. The best practice is to use double quotes around values.


How do you pass values from an sevlet to an HTML page?

You cannot. A HTML file is a static file and it cannot get or receive dynamic contents that a Servlet may pass or send.


What does h1 in HTML stand for?

Heading 1 For example, this would mean that HOME is the first heading in HTML. &lt;html&gt; &lt;body&gt; &lt;h1&gt; HOME &lt;/h1&gt; &lt;/body&gt; &lt;/html&gt;