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