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