#13164
مدیریت سایت
مدیرکل

سلام صدرا جان به کافه گپ و گفت خوش آمدید.

برای اینکار شما میتونید از یک فونت کاستوم رو با استفاده از font-face لود کنید و بعدش توی css به باکس پسورد مقدار font-family  رو برابر با فونت که تعرف کردید قرار بدید.

 

@font-face {
	font-family: 'test';
	src: url('./font/test.eot?0000');
	src: url('./font/test.eot?0000#iefix') format('embedded-opentype'),
	     url('./font/test.woff2?0000') format('woff2'),
	     url('./font/test.woff?0000') format('woff'),
	     url('./font/test.ttf?0000') format('truetype'),
	     url('./font/test.svg?0000#fontello') format('svg');
	font-weight: normal;
	font-style: normal;
}

input[type="password"] {
	font-family: "test";
	font-style: normal;
	font-weight: normal;
	speak: none;

	font-variant: normal;
	text-transform: none;
	
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	letter-spacing: 2px;
}