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