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