Heim > Artikel > Web-Frontend > HTML-Favicon
Favicon is the short form of a favorites icon, also termed a bookmark icon can be defined as a small logo with a .ico file extension, not with any other .bmp or .gif file usually seen in the address bar with a personalized image of the frequently visited URL, helps to an advertisement, promote or made as a standard trademark, meanwhile plays an essential aspect in the website like google, Facebook where we have noted a small logo in the left side of the address bar which gives a professional look as well as appears in the users favorites bookmarks and also without favicon icon the website remains generic web page icon and favors as the shortcut from the favorite’s icon.
The sample real-time example is shown below. Clicking favorites in the bookmark show typical icons. Even some Web services using XML and search engines use the favicon for their uniqueness.
Syntax:
The primary meta tag is given below to link to the web page.
<link rel="icon" href="image path" type="image/icon type">
In the above syntax, you replace the image path with the actual location of the favicon.ico, which you might place in an image directory. The last value type is a MIME format file. You can use any type of image here, but we consider the GIF format more advanced.
A web designer creates their personalized icon and associates them with the web page. Browsers that support a favicon display it in their particular address bars, achieving this through two means. Secondly, it displays with the tabbed document interface in the next link. Even when selected from their hard drive, the favicon must, most importantly, use the (.ico) file format. There are a few free services that can convert the image.
Once a developer completes the design of a website, they add a favicon. Simply it replaces a blank document icon on the browser tab with an official web page icon. This enables a user to make a website more accessible or find a more accessible website. The most popular search engine, Google, impresses or identifies with the user through its logo theme. As the icon is too small, it should be clear for the user to understand. There are different methods to create a Favicon. Method 1 – automatic generation using File Manager, Method -2: Uploading a regular image.
Steps to create favicon.ico. It’s a straightforward landing process:
You can also create the favicon with a transparent background, using either .gif or .png format. The question may arise why do we need a favicon? The answer is very simple: branding and marketing our website worldwide. The little icon makes a web page a little more professional. You add the favicon to an HTML file, which must have a particular characteristic. You can add or change the favicon on the website at any time.
The favicon is placed between the
element and replaces an image location. It uses a link tag that defines a link to the file. It makes use of two attributes, rel and href. We can use Photoshop with plugins and other online generators to convert an image file to .ico format.Icon Location path: It’s a standard implementation.
<link rel=" icon" ……….../> // It installs variety of icons. <link rel =" Shortcut icon" href=……….../> // here in the link attribute shortcut installs its own address bar icon.
The next code is used for IOS users:
<link rel =" apple-touch -icon" sizes ="180 x 180 href=……….../>
Below is an example of a code we can use in HTML code.
Example:
<!-- HTML code demo to display an icon in an address bar--> <!DOCTYPE html> <html> <head> <meta charset = "utf-8" /> <title> EDUCBA icon </title> <link rel = "icon" href =https://favi.png type = "image/x-icon"> </head> <body> <h1 style = "color:blue;"> EDUCBA Icon </h1> <p> Icon is added to the address bar </p> </body> </html>
Output:
Code Explanation: I have created a small oval icon in the above code and converted it into a favicon. We note that an icon displays in Internet Explorer, but many browsers do not support it. IE takes the icon from the root directory. The HTML file displays a 404 error from the server response if no specified path exists. You’ll likely need to empty your website’s cache to update the favicon since web browsers persistently hold onto cached favicons.
Nota: Walaupun dengan kejayaan menyiapkan penciptaan favicon, ia tidak kelihatan dalam semua tab penyemak imbas. Keserasian yang baik adalah dengan Internet Explorer 5.0+ dan Netscape 7.0+. Kebanyakan penyemak imbas moden menyokong format grafik yang berbeza sebagai favicon mereka. Masalah timbul apabila pelayan tidak dikonfigurasikan dengan baik: Ia adalah perlu untuk mencipta akar mempunyai type= “image/x-icon .ico format.Menjelang penghujung, logo favicon memainkan peranan penting dalam pembangunan tapak web, dan juga, kami telah melihat pelbagai kaedah dalam mencipta favicon, dengan itu mencapai keserasian dalam penyemak imbas silang. Ikon ini membantu dalam mencipta spesifikasi visual dengan nama domain. Menambah mereka ke tapak web adalah mudah kerana mereka membimbing pengecaman dan penjenamaan tapak serta menyokong pereka web untuk menandakan profesionalisme mereka.
Das obige ist der detaillierte Inhalt vonHTML-Favicon . Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!