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