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