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