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