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