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