CSS : Ways on how to Insert CSS

External Style Sheet

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

Internal Style Sheet

<head>
<style type="text/css">
color:#0000ff;
p {margin-left:20px}
</style>
</head>

Inline Styles

<p style="color:#0000ff;margin-left:20px">This is a paragraph.</p>

0 comments: