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