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