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