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