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