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