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