How to Make Logo Buttons
When you include a logo on a Web page, you are able to increase the awareness of a company brand. Many Web developers will attempt to include a company logo button on every page, sometimes with a button link sending the user back to the site's home page. Web developers often place this logo button somewhere close to the top of the page to increase visibility; however, you can insert the logo button wherever you like.
Instructions
-
-
1
Log in to your Web server. Click the HTML file associated with the page on which you want to insert a logo button. The HTML page opens.
-
2
Click on the section of the page where you want to insert the logo button. This must be within the <body> and </body> tags.
-
-
3
Insert this code:
<input type="image" name="button" src="http://www.site.com/logoimage.jpg" width="100" height="50">
-
4
Replace "http://www.site.com/logoimage.jpg" with the actual URL of the logo. Replace the "width" and "height" settings if desired.
-
5
Publish the page.
-
1