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