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