HTML
x
1
2
<html>
3
<head>
4
<title>Internal CSS</title>
5
<style>
6
body {background-color: powderblue;}
7
h1 {color: blue;}
8
p {color: red;}
9
</style>
10
</head>
11
<body>
12
13
<h1>This is a heading</h1>
14
<p>This is a paragraph.</p>
15
<p>This is another paragraph to check Internal CSS activity.</p>
16
17
</body>
18
</html>
CSS
1
1
JavaScript
1
1
Output: