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