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