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