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