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