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