answersLogoWhite

0

HTML colors are defined using a Hex notation for the combination of Red, Green, and Blue color values. Hex values begin with a # sign, and is followed by 3 double digit numbers or letters. Basically, for example "#000000" would be black, "#FFFFFF" would be white, #FF0000 is red, and "#0000FF" is blue. If you are writing the HTML yourself you would need a reference chart for the color you want.

To add a colored background to the web page, use the attribute BGCOLOR=".." inside the start Body tag using the color you want as the value. It should look like this: this example will give you a black background, and at the end of your HTML document you close the Body You can set the value="..." of the background to what ever you like. The color hex notation could be used as a value for any tag color attributes you use like will give you red Font

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How do you make and image automatically switch to a webpage?

You anchor it to an URL. You would like to have the image send a visitor to another webpage. Add this code, direcly above the image code <a href="another webpage address"> and this code direcly after the image code </a> This will made the image a clickable link to "another webpage address".


How do you add HTML code into a webpage?

HTML codes could be easily added to a webpage for the functionality. Dynamic web pages can made with HTML only.


What kind of code is needed to add comment boxes to a website?

The kind of code that is needed to add comment boxes to a website is HTML code. The HTML code can be downloaded from a site such as Generation Union or Quack It.


How do you add videos on your webpage?

If you want do it from the code of your webpage using HTML5 it would be: <video src="name_video.mp4" controls autoplay> Video example</video> Another way, is supporting you with the embedded code provied by YouTube, you are looking for the video of interest, in the lower menu the share option appears and then the "Insert" button immediately shows you the code with the <embed> tag and then what you do is to select, copy and paste in the code your webpage.


PMS color code converter?

=== === To add a personal comment ---- ---- ---- ---- ---- ----


How do you add video in webpage using hyperlink?

You can't add a video in a webpage using hyperlink but through embedding instead.


How can create webpage?

First you have to start with the basic layout of a webpage: from this you can do most things such as change the background colour or add text to the webpage. <html> <body bgcolor="blue"> <font face="Arial" color="white" size="8"> <p>This is a piece of example text</P></font> </body> </html>


Can you add a blog to your webpage?

Yes,surely you can add your blog to your web page.


Why is it important to add a background to a webpage?

so that is coool


What is the code of backround in HTML?

Background can be easily added into the HTML code. in the <style> element you can add background-color="red".


Which tag used to add lengthy text in webpage?

A text area can be used to add lengthy text in a webpage It contains a big text block for user input.


Write the XHTML and CSS code for an embedded style sheet that configures a class called new that is bold and italic?

Place the code into the head of the webpage..new {font-style:italic;font-weight:bold;}in the body of the webpage where you want the style to be.if it is just for a word you would add span class. Of course closing the tags too.