0
I need help with creating styled buttons in HTML
3 odpowiedzi
+ 2
please edit your question and... enter a question.
where exactly are you stuck? what did you try already? do you have a sample code?
there are button generators for pure css3 buttons on the web. it's easy to find them with your favorite search engine. just enter: css3 button generator
+ 2
<button>click me</button>
in css:
button {
background-color: #faa345;
padding: 1em;
border: 1px solid #faa346;
border-radius: 4px;
color: #fff;
}
+ 1
I'm actually a beginner both html
so I just wanted to know how the buttons are created and how they are styled
I needed the syntax to use it