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