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