Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

It isn't getting submitted in lesson 3 - 1

Here it has told to just uncomment the symbol and once I have done it then again also it also ask to remove it.
by

4 Answers

Abhisheke3yvz
You are talking about Level 3 / Lesson 1 ?
nirajjha
yeah
iamabhishek
Try this code:

<!DOCTYPE html>
<html>
<head>
<title>CSS Colors</title>
<style>
#h1{
color: pink;
}
#h2{
border: 2px solid purple;
}
#h3{
color: white;
background-color: orange;
}
</style>
</head>
<body>
<h1 id="h1">Studytonight</h1>
<h1 id="h2">Studytonight</h1>
<h1 id="h3">Studytonight</h1>
</body>
</html>
abhishek1234
Hi, please check now, it is working.

Login / Signup to Answer the Question.