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