https://warriorplus.com/o2/a/x8g6yk/0 be more attractive: How to Change Text Color in HTML

dimanche 5 février 2023

How to Change Text Color in HTML

Easily change the color of text using CSS or HTML

Do you want to change the color of the text on a web page? In HTML5, you can use CSS to define what color the text will appear in various elements on your page. You can also use inline style attributes to change the color of individual text elements in your CSS file. Using CSS will ensure that your web page is compatible with every possible browser. You can also use external CSS files to create a standard font color for a specific style across your entire website. This wikiHow article teaches you how to change text color using HTML and CSS.

[Edit]Steps

[Edit]Creating Text Styles

  1. Open your HTML file. The best way to change the color of your text is by using CSS. The old HTML attribute is no longer supported in HTML5. The preferred method is to use CSS to define the style of your elements. Go ahead and open or create a new HTML document.
    157292 1 1.jpg
  2. Place your cursor inside the head of your HTML file. When you are using an internal style sheet for a specific HTML file, it is usually placed within the head of the HTML file. The head is at the top of the sheet in between the opening tag, and the closing tag.
    157292 2 1.jpg
    • If your HTML document does not have a head, go ahead and enter the opening and closing head tags at the top of your HTML file.
  3. Type the opening and closing tags for the style sheet. All CSS elements that affect the style of the webpage go in between the opening and closing style tags within the head section of your HTML document. Type in the "head" section to create the opening style tag. Then type a couple of lines down to create the closing style tag. When you're finished, the beginning of your HTML file should look something like this:[1]
    157292 3 1.jpg
  4. Type the element you want to change the text color for followed by the opening and closing brackets. Elements you can change include the text body (), paragraph text ("<p>"), as well as headers ("<h1>", "<h2>", "<h3>", etc.). Then enter the opening bracket ("{") one space after. Then add the closing bracket ("}") a few lines down. In this example, we will be changing the "body" text. The beginning of your HTML file should look something like the following:
    157292 4 1.jpg
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
    
    }
    </style>
    </head>
    
  5. Add the color attribute into the element section of the CSS. Type in between the opening and closing brackets of the text element you just created. The "color:" attribute will tell the page what text color to use for that element. So far, the head of your HTML file should look something like the following:
    157292 5 1.jpg
    <!DOCTYPE html>
    <html>
    <head>
    <style>
          body {
          color:
    }
    </style>
    </head>
    
  6. Type in a color for the text followed by a semi-colon (";"). There are three ways you can enter a color: the name, the hex value, or the RGB value. For example, for the color blue you could type for the color name, for the RGB value, or for the hex value. Your HTML page should look something like the following:
    157292 6 1.jpg
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
            color: red;
    }
    </style>
    </head>
    
  7. Add other selectors to change the color of various elements. You can use different selectors to change the color of different text elements. If you want the header to be a different color than the paragraph text or body text, you will need to create a different selector for each element within the "<style>" section. In the following example, we change the color of the body text to red, the header text to green, and the paragraph text to blue:
    157292 7 1.jpg
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    body {
            color: red;
    }
    h1 {
            color: #00FF00;
    }
    p {
            color: rgb(0,0,255)
    }
    </style>
    </head>
    <body>
    
    <h1>This header will be green.</h1>
    
    <p>This paragraph will be blue.</p>
    
    This body text will be red.
    </body>
    </html>
    
  8. Define a CSS class that changes text color. In CSS, you can define a class rather than using the existing elements. You can apply the class to any text element within your HTML document. To do so, type a period (".") followed by the name of the class you'd like to define. In the following example, we define a new class called ".redtext", which changes the color of the text to red. Then we apply it to the header at the top of the HTML document. Checkout the following example:
    157292 8 1.jpg
    <!DOCTYPE html>
    <html>
    <head>
    <style>
    .redtext {
            color: red;
    }
    </style>
    </head>
    <body>
    
    <h1 class="redtext">This heading will be red</h1>
    <p>This paragraph will be normal.</p>
    <p class="redtext">This paragraph will be red</p>
    
    </body>
    </html>
    

[Edit]Using Inline Styles

  1. Open your HTML file. You can use inline HTML style attributes to change the style of a single element on your page. This can be useful for one or two quick changes to the style but is not recommended for widespread use. It's best to use CSS for comprehensive changes. Go ahead and open or create a new HTML document.[2]
    157292 9 1.jpg
  2. Find the text element in the file that you want to change. You can use inline style attributes to change the text color of any of your text elements, including paragraph text ("<p>""), or your headline text ("<h1>").
    157292 10 1.jpg
  3. Add the style attribute to the element. To do so, Type inside the opening tag for the element you want to change. In the following example, we have added the style attribute to the header text:
    157292 11 1.jpg
  4. Type the attribute inside the quotation marks. Type "color" with a colon (":") within the quotation marks after the style attribute. So far, your HTML file should look something like the following:
    157292 12 1.jpg
  5. Type the color you want to change the text to followed by a semi-colon (";"). There are three ways you can express a color. You can type the name of the color, you can enter the RGB value, or you can enter the hex value. For example, to change the color to yellow, you could type for the color name, for the RGB value, or to use the hex value. In the following example, we change the headline color to yellow using the hex value:
    157292 13 1.jpg

[Edit]Tips

  • You can see a list of supported color names and their hex values at

[Edit]Related wikiHows

[Edit]References

[Edit]Quick Summary



source How to of the Day https://ift.tt/Dt7ydRw

Aucun commentaire:

Enregistrer un commentaire

https://warriorplus.com/o2/a/x8g6yk/0

How to Cut Ties with Family Members Who Hurt You

Being treated badly by someone is painful enough, but when you’re hurt by a family member, it can be especially hard to overcome. Whether t...

https://warriorplus.com/o2/a/x8g6yk/0