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