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