Heim  >  Artikel  >  Web-Frontend  >  HTML-Favicon 

HTML-Favicon 

王林
王林Original
2024-09-04 16:48:111154Durchsuche

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.

HTML-Favicon 

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.

How to Create HTML Favicon?

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:

  1. Generating an image with a size of 16 x 16 pixels (Recognition of an image). Here, you can resize the image to make it tiny for use as a favicon.
  2. Make a conversion to a favicon.ico file format for the browser’s understanding.
  3. Uploading a generated icon into the website.
  4. The next step is adding the code to HTML. You can even use a favicon as a desktop or Apple icon.

How to Insert Favicon in HTML File?

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.

  • Standard Name with a File Format: Once an image is created and named, the default has a favicon.ico (ICO files done with X-ICON Editor).
  • Size of an Image File:16 * 16, 64 * 64, 128 * 128 pixels, and files should not exceed 100KB.
  • Colour: maybe 8 bites, 24 or 32 bites
  • Image: Should be in gif or png format.

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:

HTML-Favicon 

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.

Kesimpulan

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!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:HTML ColspanNächster Artikel:HTML Colspan