You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/css/Class style overwrites the ...

26 lines
780 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Class Style Overwrites The Wildcard Style</title>
<style type='text/css'>
* {
font-family: verdana;
}
div {
font-family: "Times New Roman";
}
</style>
</head>
<body>
This font is verdana.
<div>
This font is Times New Roman.<br>
Love alone is capable of uniting living beings in such<br>
a way as to complete and fulfill them,<br>
for it alone takes them and joins them<br>
by what is deepest in themselves.<br><br>
Pierre Teilhard de Chardin
</div>
</body>
</html>