How to Make a Favicon in Dreamweaver
The Dreamweaver Web design tool lets you manually insert a favicon, a small image that represents your company, on your website. The icon shows up in your readers' browsers when they bookmark your site, making the link stand out. You must use the link tag in your HTML pages to create the favicon for your pages.
Instructions
-
-
1
Open the Adobe Dreamweaver software in the Windows program group and open your Web project.
-
2
Double-click the HTML file in which you want to insert the ICO favicon file. Click the "Code View" tab to view the HTML.
-
-
3
Add the following code within the "<head>" and "</head>" tags:
<link href="favicon.ico" type="image/x-icon" />
The favicon must have the name "favicon.ico" to show up in the user's browser, so the image name is mandatory.
-
4
Save the file and open the Web page in your default browser to test the new favicon link.
-
1