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