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