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