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