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