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