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