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