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