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