css example
Example 1: link css file in html
<link rel="stylesheet" href="styles.css">
Example 2: basic css designn elements
background-color : lightblue;
color : blue;
font-family : "Times New Roman", Times, serif;
Example 3: css example
body {
background-color: #282c34;
color: white;
padding: 40px;
font-family: Arial;
text-align: center;
}
Example 4: css syntax examples
selector {property: value; }
Example 5: html inline style
<element style="css">
Example 6: how to write css
.main li, .main li a {
color: var(--primary-color);
}