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