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