<h1>Heading 1</h1>
<p>Question: What if I want to make sentence #2 and Heading #2 hotpink? Everything else, keep black.</p>
<p>sentence #1.</p>
<p class="hp">sentence #2 blah blah blah.</p>
<p id="second-heading">sentence #3.</p>
<h1 class="hp">Heading 2</h1>
<p>sentence #4.</p>
<div class="hp">This is a div</div>
h1 {
background-color: #80391e;
color: white;
padding: 10px;
font-family: Arial;
font-weight: 800;
}
h1:hover {
background-color: black;
font-weight: 500;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.