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