#I don't know what the problem is?

4 messages · Page 1 of 1 (latest)

warm idol
#

Im trying to get the h1 to change to a different color and increase size on VS coder.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, intial-scale=1.0">
<title>Losing Weight Fast</title>
</head>
<body>
<h1 class="pict1">How to lose weight fast</h1>
</body>
</html>

CSS
.pic1 {
font-size: 200%;
color: blue;
}

celest pollen
warm idol
#

Thank you <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width-device-width, intial-scale=1.0">
<title>Welcome Home</title>
<link rel="stylesheet" href="styles.css">
<style>
h1 {color:blueviolet}
</style>
</head>
<body>
<h1>How to lose weigth fast</h1>
</body>
</html>

foggy vapor