Use on the webTotal Use [ 3210 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/cf8c7175001b71ebc394b91e27b5efcf?family=Queen+Of+The+Modern+Age-Hollow-" 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/cf8c7175001b71ebc394b91e27b5efcf?family=Queen+Of+The+Modern+Age-Hollow-);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Queen Of The Modern Age-Hollow-";
src: url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.eot");
src: url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/cf8c7175001b71ebc394b91e27b5efcf.svg#Queen Of The Modern Age-Hollow-")format("svg");
}
2CSS rules to specify fonts
font-family: "Queen Of The Modern Age-Hollow-";