x
1
2
<html>
3
<head>
4
<title>Page Title</title>
5
<style>
6
body
7
{
8
background-color: rgb(255, 0, 0,0.5);
9
}
10
</style>
11
</head>
12
<body>
13
14
<h1>This is a Heading</h1>
15
<p>This is a paragraph.</p>
16
17
</body>
18
</html>
<html>
<head>
<title>Page Title</title>
<style>
body
{
background-color: rgb(255, 0, 0,0.5);
}
</style>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>