zeek13.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Starting</title>
</head>
<body>
<h1>CSS STARTING</h1>
<em>What is CSS?</em><br>
<strong> CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts.</strong><br><br>
<em>What is CSS property?</em>
<ul>The CSS properties are as follows
<li>A CSS rule consists of a CSS selector and a set of CSS properties</li>
<li>The CSS selector determines what HTML elements to target with the CSS rule</li>
<li>The CSS properties specifies what to style of the targeted HTML elements</li>
</ul>
<em>What are types of CSS?</em>
<ul><em>There are the 3 types of CSS</em>
<li>Inline CSS.</li>
<li>Internal or Embedded CSS.</li>
<li>External CSS.</li>
</ul>
<a href="https://www.geeksforgeeks.org/types-of-css-cascading-style-sheet/">CLICK HERE TO UNDERSTAND TYPES OF CSS</a><br><br>
<a href="https://www.tutorialspoint.com/css/index.htm">FOR FURTHER LEARNING ON CSS</a>
</body>
</html>
Comments
Post a Comment