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