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