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>
When you are looking to apply for a mortgage the one thing that most people…
Once you've memorized basic blackjack strategy, it's time to delve deeper into the game. Advanced…
Yoga is no longer just a physical practice. Yoga is popular as a lifestyle practice.…
Best Crypto Sign-Up Bonuses in India 2026: Ranked & Compared Every exchange claims to have…
One of the world's busiest travel hubs, New York City relies heavily on coach bus…
Whether large scale or small scale, many businesses want to market their services or products…
View Comments
Thanks, this is very useful, basically the import.
I am new to CSS. Keep posting others.