body {                                     /*กำหนดสไตล์ชีทให้กับแท็ก <body>*/
           line-height: 1.5em;
		   }
a:link {                                      /*กำหนดสไตล์ชีทให้กับลิงค์ที่ยังไม่ถูกคลิก (a:link)*/
           color: black;
           text-decoration: none;
		   }
a:visited {                                   /*กำหนดสไตล์ชีทให้กับลิงค์หลังจากคลิกไปแล้ว (a:visited)*/
          color: red;
		  text-decoration: none;       /*underline*/
		  }
a:hover {                                    /*กำหนดสไตล์ชีทให้กับลิงค์เมื่อเลื่อนเมาส์ไปวางบนลิงค์ (a:hover)*/
          color: green;
		  font-weight: bold;
		  background-color: none;
		  }
a:active {                                       /*กำหนดสไตล์ชีทให้กับลิงค์ที่กำลังใช้งาน*/
          color: white;
		  background-color: blue;
		  }