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