HTML/CSS/Form Tags/button

Материал из Web эксперт
Перейти к: навигация, поиск

"button" Example

    
<html>
<head>
<title>button element example</title></head>
<body>
   <center>
      <button type="button" 
              id="myButton" 
              style="font-weight:bold; 
                     color:darkblue; 
                     background:cyan; 
                     border-color:blue; 
                     font-family:Verdana;">
      Button</button> 
    </center>
</body>
</html>



Form button with label

<html>
<body>
<form>
<input type="button" value="Hello world!">
</form>
 
</body>
</html>