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