Droid
Would you like to react to this message? Create an account in a few clicks or log in to continue.

HTML STYLES

Go down

HTML STYLES Empty HTML STYLES

Post by Admin Sun Aug 30, 2015 8:47 pm

HTML Styles

I am Red


I am Blue




HTML Styling

Every HTML element has a default style (background color is white, text color is black, text-size is 12px ...)
Changing the default style of an HTML element, can be done with the style attribute.
This example changes the default background color from white to lightgrey:

Example




Code:
<body style="background-color:lightgrey">

<h1>This is a heading</h1>

<p>This is a paragraph.</p>

</body>







The HTML Style Attribute

The HTML style attribute has the following syntax:
style="property:value"
The property is a CSS property. The value is a CSS value.






HTML Text Color

The color property defines the text color to be used for an HTML element:

Example


Code:
<!DOCTYPE html>
<html>

<body>
  <h1 style="color:blue">This is a heading</h1>
  <p style="color:red">This is a paragraph.</p>
</body>

</html>



HTML Text Fonts

The font-family property defines the font to be used for an HTML element:

Example


Code:
<!DOCTYPE html>
<html>

<body>
  <h1 style="font-family:verdana">This is a heading</h1>
  <p style="font-family:courier">This is a paragraph.</p>
</body>

</html>



HTML Text Size

The font-size property defines the text size to be used for an HTML element:

Example


Code:
<!DOCTYPE html>
<html>

<body>
  <h1 style="font-size:300%">This is a heading</h1>
  <p style="font-size:160%">This is a paragraph.</p>
</body>

</html>




HTML Text Alignment

The text-align property defines the horizontal text alignment for an HTML element:

Example


Code:
<!DOCTYPE html>
<html>

<body>
  <h1 style="text-align:center">Centered Heading</h1>
  <p>This is a paragraph.</p>
</body>

</html>
Admin
Admin
Admin
Admin

Posts : 83
Points : 31987
Reputation : 3
Join date : 2015-07-22

https://droid.1talk.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum