<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors - Class Selector</title>
</head>
<body>
<style type="text/css">
.class_selector{
color:#0099da;
font-weight:bold;
font-style:italic;
text-align: center;
}
</style>
<h1 class="class_selector">Free Time Learning (F T L)</h1>
<h3 class="class_selector">www.freetimelearning.com</h3>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors - ID Selector</title>
</head>
<body>
<style type="text/css">
#id_selector{
color:#0099da;
font-weight:bold;
font-style:italic;
text-align: center;
}
#id_selector_2{
color:#F60;
font-weight:bold;
font-style:italic;
text-align: center;
}
</style>
<h1 id="id_selector">Free Time Learning (F T L)</h1>
<h3 id="id_selector_2">www.freetimelearning.com</h3>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors - Universal Selector</title>
</head>
<body>
<style type="text/css">
* {
color:#6C0;
text-align:center;
}
</style>
<h1>Free Time Learning (F T L)</h1>
<h3>www.freetimelearning.com</h3>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors - Element Selector</title>
</head>
<body>
<style type="text/css">
h1{
color:#F00;
font-weight:bold;
text-align:center;
}
p{
color:#00F;
font-weight:bold;
text-align:center;
}
</style>
<h1>Free Time Learning (F T L)</h1>
<p>www.freetimelearning.com</p>
</body>
</html>
www.freetimelearning.com
<!DOCTYPE html>
<html>
<head>
<title>CSS Selectors - Group Selector</title>
</head>
<body>
<style type="text/css">
h1, h3, p, .my_font {
color:#F3C;
text-align:center;
font-weight:bold;
}
.my_font{ font-size:18px; font-style:italic;}
</style>
<h1>Free Time Learning (F T L)</h1>
<h3>www.freetimelearning.com</h3>
<p>www.freetimelearn.com</p>
<div class="my_font">Free Time Learning (www.freetimeleaning.com)</div>
</body>
</html>
www.freetimelearn.com