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