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