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