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