Description: Create your first HTML page with a message.
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello, web!</h1>
<p>Iām queer and coding!</p>
</body>
</html>
Open the file in a browser (double click or drag into browser window).<h1 style="color: hotpink">
), replace text, or add emojis.Description: Use CSS to change the background color.
<head>
of index.html, add:<style>
body {
background-color: lavender;
}
</style>
Save and refresh in the browser.background: linear-gradient(pink, blue)
, or use dark color codes like #1e1e1e
.