Introduction to CSS
CSS is a language that describes the style of an HTML document. CSS describes how HTML elements should be displayed. This tutorial will teach you CSS from basic to advanced.
CSS can be added to HTML documents in a number of ways:
<p style="color: red;">This is a paragraph.</p>
<link rel="stylesheet" href="styles.css"> // In the head section
<style>
ㅤp {
ㅤㅤcolor: red;
ㅤ}
</style>