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