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