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