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