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