Change style output to make <a> link text not underline - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Text

Description

Change style output to make <a> link text not underline

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
 </head> <!--  w  w  w.  j a  v  a 2 s . c om-->
 <body> 
  <a style="text-decoration:none;" href="http://example.com">testing</a>  
 </body>
</html>

Related Tutorials