In the html below I want to make the letters more narrow. I read about Css-property font-strech but I cannot get the letters more narrow. Could someone help? I know about letter-spacing property, but that makes the space bewteen the letters smaller and I want to make the letters themselves more narrow. Or is there another way to achieve this?
This is the HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<style type="text/css"><!--
h1 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial; text-align: left; text-decoration: none; line-height: 66px;}
h2 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial-black; text-align: left; letter-spacing: -6px; line-height: 66px; }
h3 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial-black; text-align: left; font-stretch: ultra-condensed; text-decoration: none; line-height: 66px; }
-->
</style>
</head>
<body>
<H1>Communication Training</H1>
<H2>Communication Training</H2>
<H3>Communication Training</H3>
</body>
</html>
This is the HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<style type="text/css"><!--
h1 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial; text-align: left; text-decoration: none; line-height: 66px;}
h2 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial-black; text-align: left; letter-spacing: -6px; line-height: 66px; }
h3 { color: #D16700; font-weight: 700; font-size: 56px; font face: Arial-black; text-align: left; font-stretch: ultra-condensed; text-decoration: none; line-height: 66px; }
-->
</style>
</head>
<body>
<H1>Communication Training</H1>
<H2>Communication Training</H2>
<H3>Communication Training</H3>
</body>
</html>