1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <style> input[type=text] , select { width: 100px; margin: 10px 0; display: inline-block; border: 2px solid whitesmoke; border-radius: 1px; box-sizing: border-box; } input[type=submit] { width: 100%; background-color: blue; color: white; padding: 20px 20px; margin: 10px 0; border: none; border-radius: 10px; cursor: pointer; } input[type=submit]:hover { background-color: #00008B; } div { border-radius: 10px; background-color: cadetblue; padding: 10px; } </style> <body> <form action="http://zsdk.org.cn/"> <label for="name">Name</label> <input type="text" id="name" name="inputname" placeholder="name...">
<label for="describe">Describe</label> <input type="text" id="describe" name="inputdescribe" placeholder="Describe">
<input type="submit" value="Submit"> </form> </body>
|