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