How to create a rectangular submit bottom in Web page? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to create a rectangular submit bottom in Web page?

Iā€™ve seen a lot of Square Buttons that has exact sharp Angles thatā€™s rectangular shape .But How do I make it? Is that a button or sth? Cus when I use <input type =ā€œsubmitā€> THE BUTTON already has its radii.Pls Help.

13th Mar 2019, 4:24 PM
OKKAR
OKKAR - avatar
1 Answer
+ 4
<svg xmlns="http://www.w3.org/2000/svg"> <g> <rect x="0" y="0" width="60" height="25" fill="red"></rect> <text x="4" y="20" font-family="Verdana" font-size="17" fill="#ff0">submit</text></text> </g> </svg>
13th Mar 2019, 4:48 PM
BroFar
BroFar - avatar