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