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