<html lang="en">
<head>
<title>jQuery #ID Selector</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#blockred").css("color", "red");
});
</script>
</head>
<body>
<h2>jQuery #ID Selector</h2>
<p>Welcome to our tutorial.</p>
<p id="blockred">Tutorialdeep is the best way to learn everthing from jQuery Tutorial.</p>
<em>Now, you can learn jQuery with live examples.</em>
</body>
</html>