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