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