Social Media Magazine

How to Make a Simple HTML Button For Your Blog

Posted on the 27 April 2013 by Mohammed39
How to Make a Simple HTML Button For Your Blog

1. To make simple text link :

<a href="URL HERE">Text for link</a>
For example <a href="http://bbloggertutorials.blogspot.com/">Blogger Tutorials</a>


Preview
Text for link For example Blogger Tutorials
  2. To Make the Button:

<FORM METHOD="LINK" ACTION="Page1.htm">
 <INPUT TYPE="submit" VALUE="ClickHere Button"></FORM>


Preview
  Here's what each parts means:
  • FORM tells the computer a form item is going here.
  • METHOD tells the computer how to handle the form command.
  • ACTION denotes what connection you want to make. Here we made a connection to something called "Page1.htm."
  • INPUT TYPE tells what type of input will occur . In this case you want to "submit" something. You see, the FORM command above is looking for a link. Here you are "submitting" a link.
  • VALUE is the wording that appears on the button. 

Back to Featured Articles on Logo Paperblog