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