<head>
<style>
/*element selector*/
h1{color:red}
/*class selector*/
.tdb-class{color:blue}
/*id selector*/
#tdb-id{color:green}
</style>
</head>
<head>
<style>
h1{
color:red
}
.tdb-class{
color:blue
}
#tdb-id{
color:green
}
</style>
</head>
<body>
<h1>Element Selector
</h1>
<h1 class="tdb-class">Class Selector
</h1>
<h1 id="tdb-id">Id Selector
</h1>
</body>
<style>
h1, h2{color:red}
</style>
<head>
<style>
h1, h2{color:red
}
</style>
</head>
<body>
<h1>h1 tag
</h1>
<h2>h2 tag
</h2>
</body>
<style>
selector{
property: value;
property: value
}
</style>
Share TDB SCHOOL
Share this E-Learning Website on social media platforms with your friends and followers