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