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