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