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