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