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