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