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