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