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