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