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