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