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