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