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