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