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