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