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