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