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