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