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