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