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