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