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