<!DOCTYPE html>
<html>
<head>
<title>Garamond Font Example</title>
<style>
body {
font-family: Garamond, Baskerville, “Baskerville Old Face”, “Hoefler Text”, “Times New Roman”, serif;
font-size: 18px;
}
</style>
</head>
<body>
<h1>This is Garamond (if available)</h1>
<p>
This paragraph uses the Garamond font if it’s installed on your system, otherwise it will fall back to other serif fonts.
</p>
</body>
</html>