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