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