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