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

22 lines
432 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Colors</title>
<style>
/* Write your CSS code here. */
/* 1. Make the background of the webpage "antiquewhite"
2. Make the h1 "whitesmoke"
3. Make the background of the h1 "darkseagreen"
4. Make the h2 #FAF8F1
5. Make the background of the h2 "#C58940" */
</style>
</head>
<body>
<h1>Hello</h1>
<h2>World</h2>
</body>
</html>