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