TEXT BUTTON
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
   button {
      background: none;
	  border: none;
	  text-decoration: none;
   }
   button:hover {
     background-color: blue;
   }
   p , button {
     color: red;
	 font-size: 20px;
   }
   
</style>
</head>
<body>
    <h2> The text button </h2>
    <p>Here we have placed a  <span> <button>text button</button></span> in this paragraph. Hover over it to find it. </p>
	
	

</body>
</html>