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