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