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