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