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