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