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