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