Website can not be completed without any style. So you apply CSS. When a browser reads a CSS style sheet, this formats the HTML document according to the information in the CSS style sheet.
With 3 basic ways you can add CSS in your web pages:-
<link href="style.css" rel="stylesheet" type="text/css">
or import CSS:
<style type="text/css" media="all"> @import "../style.css"; </style>
Read Also: Align text vertically next to an image
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sample page</title>
<style type="text/css">
div { padding-top: 10px; }
</style>
</head>
<body>
</body>
</html> <div style="padding-top:10px;">Your content goes here...</div>
Introduction There is an increasing need for full-stack developers because companies want people who can…
Classic Russian literature holds a quiet power that still shapes stories today. Its voice feels…
Digital channels often get most of the attention in modern branding. A business can launch…
If you have been researching digital marketing programs in India, Kraftshala and IIDE both keep…
Email marketing remains one of the highest-performing digital marketing channels because it gives businesses direct…
Pain in muscles and joints can be a problem in everyday life, whether it involves…
View Comments
Thanks, this is very useful, basically the import.
I am new to CSS. Keep posting others.