tashimicic
New Coder
I'm trying to use a downloaded font. I used transfonter.org to convert into .woff and .woff2 and placed the files in a subfolder labeled "style" which also holds my css stylesheet.
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Tashi Mićić</title>
<link rel="stylesheet" href="style/main.css">
</head>
<body>
<h1 class="rose">Tashi Mićić Homepage</h1>
<p>GDES 308 - Handmade Web</p>
</body>
</html>
CSS:
body {
background-color: #987069;
color: #ffffff;
}
@font-face {
font-family: mondy;
src: url(style/MondyDEMO-Regular.woff2);
}
@font-face {
font-family: rose;
src: url(style/DelRose-Regular.woff2);
}
.rose {
font-family: rose;
}
.mondy {
font-family: mondy;
}