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