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