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