Review Ticket Week 5
This is a review of everything learned in week 5
HTML Experimentation
%%HTML
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1 title="This is a title">Hover over this heading!!</h1>
<p style="color:red">This is a red paragraph</p>
<p style="color:blue">This is a blue paragraph</p>
</body>
</html>
Hover over this heading!!
This is a red paragraph
This is a blue paragraph