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