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