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