tabletrthtdtheadtbodytfootdiv - block level elementspan - inline level elementborder is used in tablestyle is used in inline styleid for make a tag uniqueclass for common selection<h1 style="color: red" >Hello world </h1>
<style>
h1 {
color: red;
}
</style>
<link rel="stylesheet" href="style.css">
h1 {
color: red;
}
here,
h1 - tag
color - property
red - value
id selector start with #
#first-heading {
color: red;
}
class selector start with .
.hiru-sir-fav-color {
color: red;
}