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