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