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