1<html>
2<head>
3 <meta charset="UTF-8">
4 <meta name="viewport" content="width=device-width, initial-view=1.0">
5 <link rel="icon" href="images/favicon.ico" type="image/x-icon">
6 <title>CSS Introduction</title>
7 <style>
8 body {
9 background-color: lightblue;
10 }
11 h1 {
12 color: white;
13 text-align: center;
14 }
15 p {
16 font-family: verdana;
17 font-size: 20px;
18 }
19 </style>
20</head>
21<body>
22 <h1>My first CSS example</h1>
23 <p>This is a paragraph</p>
24</body>
25</html>
Created: Tue, 07 Mar 2023 13:23:04 +0000
Expires: Never