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