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