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