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