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