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