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