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