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