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