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