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