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