100-Days-Of-Code/Web Development Python Projects/6.0 CSS Colors/solution.html
2024-11-19 08:17:56 +05:30

29 lines
382 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Colors</title>
<style>
body {
background-color: antiquewhite;
}
h1 {
color: whitesmoke;
background-color: darkseagreen;
}
h2 {
color: #FAF8F1;
background-color: #C58940;
}
</style>
</head>
<body>
<h1>Hello</h1>
<h2>World</h2>
</body>
</html>