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