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