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