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