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