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