Google Material Icon In HTML Input?

I want the icon to be included in the enter input button. I tried the following, but this does not work. Any tips?

<input type="submit" name="submit" value="Submit" />

I want to add the following:

<i class="material-icons">star_rate</i>
+4
source share
1 answer

There are various ways to do this, but according to your code, just use

<button type="submit" name="submit"><i class="material-icons">star_rate</i></button>
Run codeHide result
+4
source

Source: https://habr.com/ru/post/1651253/


All Articles