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