Assignment Help Ulimate HTML5/CSS Course

I am working on Lesson 8 of the CSS section and cannot duplicate the results as shown in the video. The Lesson is Selectors Specificity. The text should change to pink, but it does not. The HTML code and CSS Code are included in the body of this question submission. Please Help if you can

Index.html

!DOCTYPE html>

Document

Heading

CSS Code

body {
margin: 10px;
}

h1 {
color: dodgerblue;
}

.highlight {
color: deeppink;
}

Result

Seems like you didn’t include the css in the html file. When things aren’t working i often check dev tools and see id styles exist or are being overwritten.