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