HTML Styles

HTML Styles
  • The HTML style attribute is used to add styles to an element, such as font, color, size,and more.
The HTML Style Attribute
  • Setting the style of an HTML element, can be done with the style attribute.

<tagname style="property:value;">

Background Color
  • The CSS background-color property defines the background color for an HTML element.
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color:powderblue;
}
</style>
</head>
<body>

<h1>This is a heading</h1>
<p style="background-color:blue; color:red;">This is a Paragraph </p>
</body>
</html>
Text Color
  • The CSS color property defines the text color for an HTML element.

<h1 style="color:blue;">This is a heading</h1>

Output:

This is a paragraph.

Fonts
  • The CSS font-family property defines the font to be used for an HTML element.

<h1 style="font-family:courier;">This is a heading</h1>

Output:

This is a heading

Text Size
  • The CSS font-size property defines the text size for an HTML element.

<p style="font-size:160%;">This is a paragraph.</p>

Output:

This is a paragraph.

Text Alignment
  • The CSS text-align property defines the horizontal text alignment for an HTML element.

<p style="text-align:center;">Centered paragraph.</p>

Output:

Centered paragraph.