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