Looking to expand my skills in HTML and CSS, I've encountered a bit of a hiccup.
Utilizing Bootstrap for my webpage, here's the simplified version of what I have so far:
index.html:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="div">
<h3>Title</h3>
<p>Description</p>
</div>
</body>
</html>
main.css:
h, p {
font-family: "Times New Roman", serif;
}
The text inside <p>
displays correctly in Times New Roman, but the text within <h3>
stubbornly refuses to change.
Could someone shed some light on why this is happening, and provide guidance on how to resolve it? Apologies if this seems like an obvious inquiry.