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