An HTML page with CSS rules and HTML attributes
<!DOCTYPE html>
<html>
<head>
<title></title>
<style>
h1 {
text-align: center;
color: darkblue;
}
.intro-text { font: 12pt sans-serif; }
</style>
</head>
<body>
<h1>Hello World Wide Web</h1>
<p class="intro-text">
Welcome to this webpage,<br/>
It's <em>so</em> nice to see you.
</p>
<hr/> <!-- horizontal rule -->
</body>
<!-- function to make the text red when clicked -->
<script type="text/javascript">
document.body.onclick = function () {
document.body.style.color = 'red';
}
</script>
</html>
Related examples in the same category