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