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