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