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