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