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