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