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