<!DOCTYPE html>
<html>
<head>
<title>wikitechy HTML scoped Attributes</title>
<style>
h1 {
color:red;
}
</style>
</head>
<body>
<div>
<style scoped>
h1 {
color:blue;
}
</style>
<h1>Learn HTML5 with our Wikitechy.com</h1>
</div>
<h1>Learn our Creative step by step HTML5 tutorials library</h1>
</body>
</html>