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