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