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