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