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