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