HTML COURSE โ€ข LESSON 8

HTML Styles

The HTML style attribute can be used to change colors, fonts, sizes and other visual properties.

Style Syntax

Style Syntax
<tag style="property: value;">
    Content
</tag>

Text Color

Text Color
<h1 style="color: cyan;">
    EDUHUB Code Hub
</h1>

Background Color

Background Color
<body style="background-color: black;">

    <h1>Dark Website</h1>

</body>

Font Family

Font Family
<p style="font-family: Arial;">
    Learn HTML
</p>

Text Size

Font Size
<h1 style="font-size: 50px;">
    EDUHUB
</h1>

Text Alignment

Text Alignment
<h1 style="text-align: center;">
    HTML Course
</h1>
โญ Important

Inline styles are useful for learning, but larger websites should normally use separate CSS files.

โšก EDUHUB Live HTML Editor

LIVE PREVIEW