+ 2
Icono en una web?
como se hace para ponerle un icono a una pagina web?
6 Answers
+ 13
Ulises, Âżcon "icono" te referĂs a un "favicon"? Es el Ăcono o pequeña imagen que aparece al lado del titulo de una pĂĄgina web.
Si ese es el caso, dentro de las etiquetas: <head> acå </head> tenés que poner este código:
<link rel="icon" type="image/png" href="mifavicon.png">
El type puede ser png, ico, etc. el que sea tu imagen. Ese es el método preferido de la w3. Podés encontrar info oficial sobre esto acå: https://www.w3.org/2005/10/howto-favicon
Si es otro tipo de icono del que hablabas danos detalle y lo vemos đ
+ 25
"How do you put an icon on a web page?"
Google translated
just in case of "downvote bc nonEnglish"
+ 13
Do you mean add icon beside title bar?
<!DOCTYPE html>
<html>
<head>
<title>Your Title</title>
<link rel="icon" href="youricon.png" type="image/png">
</head>
<body>
<p> some text
</p>
</body>
</html>
+ 1
<link rel="icon" href="icon.png" type="image/png"> insert it in head tag and put the icon.png file in the same dir of your html file
+ 1
!gracias Paola MB y Octavio Barreto!
0
and agus mei