twinsett
twinsett

Reputation: 115

Google Material Icon In a HTML input?

I want an icon to go into an input submit button. I've tried the following, but it doesn't work. Any advice?

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

I wanna put the following in:

<i class="material-icons">star_rate</i>

Upvotes: 6

Views: 6787

Answers (1)

AntonyMN
AntonyMN

Reputation: 919

There are various ways this can be done but according to your code just use

<button type="submit" name="submit"><i class="material-icons">star_rate</i></button>

Upvotes: 9

Related Questions