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