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