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