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