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