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