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