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