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