So, this is my code
<style>
body {
background-color: black;
font-family: Monospace;
color: green;
}
#orange-text {
color: orange;
}
#white-text {
color: white;
}
.pink-text {
color: pink;
}
.blue-text {
color: blue;
}
.white-text {
color: white;
}
</style>
<h1 id="white-text" class="pink-text blue-text white-text">Hello World!</h1>
and i need to give h1 an id of white-text and orange-text . How can this be done
<style>
body {
background-color: black;
font-family: Monospace;
color: green;
}
#orange-text {
color: orange;
}
#white-text {
color: white;
}
.pink-text {
color: pink;
}
.blue-text {
color: blue;
}
.white-text {
color: white;
}
</style>
<h1 id="white-text" class="pink-text blue-text white-text">Hello World!</h1>
and i need to give h1 an id of white-text and orange-text . How can this be done
