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