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