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