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