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