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