Comprehensive Css Basics For Beginners:summary 01
1. CSS SYNTAX
p {
// css code goes here
}
From the example above, you can tell that a css syntax contain element being targeted and the rules or the css styles goes inside curly braces {}.
2. Including CSS into HTML file
<link href="style.css" rel=...
boratechlife.hashnode.dev4 min read