Use on the webTotal Use [ 3868 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/a0a256330773e8c00080d891be923e3e?family=Douglas+-+Wolves+Serif" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/a0a256330773e8c00080d891be923e3e?family=Douglas+-+Wolves+Serif);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Douglas - Wolves Serif";
src: url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.eot");
src: url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/a0a256330773e8c00080d891be923e3e.svg#Douglas - Wolves Serif")format("svg");
}
2CSS rules to specify fonts
font-family: "Douglas - Wolves Serif";