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