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