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