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