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