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