answersLogoWhite

0

What does body vlink do in HTML?

Updated: 12/12/2022
User Avatar

Wiki User

15y ago

Best Answer

encloses the main body of the document. The attribute Alink="..." specifies the color of the activated link on the page. Vlink=".."specifies the color of the followed links (clicked on or visited already) in the page. other body attributes include: bgcolor="..." the background color of the page.or Text="..." specifies the color of the text in the page.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does body vlink do in HTML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a vlink?

I Think VLink Means Visited Link.


What is the full form of vlink?

Visited link...... I think!!


How do you prepare an HTML?

The basic HTML base to a HTML website is <HTML> <title> </title> <head> </head> <body> </body> </HTML>


What are the two main parts of an HTML file What tags create them?

The html page <html> </html> and also the body <body></body> which contains the content.


What is the effect of body in HTML?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


What are the two HTML syntaxes?

HTML is a markup language and it's syntax is well defined. It can be used as <html><body>...</body></html>


What is the skeleton for an HTML based webpage?

<html> <head> <title></title> </head> <body> </body> </html>


What is the effect in the body?

The <body></body> tag defines the body of an HTML document. Here is the minimum format needed for a basic HTML page. <html> <head> <title>Title</title> </head> <body> Stuff goes here... </body> </html>


What is process of properly ordering HTML tags?

< html > < head > </ head > < body > </ body > </ html > Without spaces.


Coding for creating HTML editor using java applet?

<html> <body> java applets</body></html>


What are the basic elements of HTML document?

HTML head title /title meta style /style /head body /body /HTML


What does h1 in HTML stand for?

Heading 1 For example, this would mean that HOME is the first heading in HTML. <html> <body> <h1> HOME </h1> </body> </html>