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