intro-css
HTML
<p>
welcome to css guru
</p>
<blockquote>
by @code4mk
</blockquote>
CSS
/* This is a CSS comment */
p,
blockquote{
background: lightgreen;
color: darkgreen;
}
/*
Comments are only meant to be read by humans
and won't be parsed by the computer
*/