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