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