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