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