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