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