You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
462 B
27 lines
462 B
10 months ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8"/>
|
||
|
<meta name="viewport" content="width=device-width"/>
|
||
|
<style>
|
||
|
h2 {
|
||
|
color: darkorange
|
||
|
}
|
||
|
|
||
|
.blue_text {
|
||
|
color: blue
|
||
|
}
|
||
|
|
||
|
#red_text {
|
||
|
color: red
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h2>Tag selector</h2>
|
||
|
<hr>
|
||
|
<h2 class="blue_text">Class selector</h2>
|
||
|
<hr>
|
||
|
<h2 id="red_text">Id selector</h2>
|
||
|
</body>
|
||
|
</html>
|