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