<!DOCTYPE html>
<html>
<head>
<title>CSS :target Selector</title>
<style type="text/css">
:target {
color: red;
}
h3:target {
color: blue;
}
p:target {
color: orange;
}
</style>
</head>
<body>
<a href="#one">First</a>
<a href="#two">Second</a>
<a href="#three">Third</a>
<div id="one">Third</div>
<h3 id="two">Second</h4>
<p id="three">Third</p>
</body>
</html>