Menu

HTML TUTORIALS - HTML Styles

HTML Styles

ADVERTISEMENTS

<p style="color:red;font-size:24px;">Using Style Sheet Rules</p>

ADVERTISEMENTS

Using Style Sheet Rules

ADVERTISEMENTS


<head>
<link rel="stylesheet" type="text/css"
href="yourstyle.css">
</head>


<head>
<style type="text/css">
body{background-color: pink;}
p{color:blue; 20px;font-size:24px;}
</style>
</head>

<p style="color:red;font-size:24px;">Using Style Sheet Rules</p>

Using Style Sheet Rules