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