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