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