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