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