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