HTML
x
1
2
<html>
3
<head>
4
<style>
5
body {
6
background-color: lightblue;
7
}
8
9
h1 {
10
color: white;
11
text-align: center;
12
}
13
14
p {
15
font-family: verdana;
16
font-size: 20px;
17
}
18
</style>
19
</head>
20
<body>
21
22
<h1>My First CSS Codes </h1>
23
<p>This is a paragraph.</p>
24
25
</body>
26
</html>
27
CSS
1
1
JavaScript
1
1
Output: