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