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