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