I am try (and learning) how to define a class in CSS and call it from HTML - but no luck,
Here’s the code(s):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
ASDASDADADSA
<div class="dave">
TEST
</div>
</body>
</html>
CSS ...
.dave {
font-size: 56px;
text-transform: capitalize;
font-family: Arial, sans-serif;
font-weight: bold;
color: red;
}
Chrome and Edge - current versions
Thanks for any help!
Dave