Icono en una web? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Icono en una web?

como se hace para ponerle un icono a una pagina web?

20th Apr 2017, 7:41 PM
Ulises Zagare
Ulises Zagare - avatar
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 😊
21st Apr 2017, 3:41 AM
Pao
Pao - avatar
+ 25
"How do you put an icon on a web page?" Google translated just in case of "downvote bc nonEnglish"
20th Apr 2017, 8:03 PM
Illusive Man
Illusive Man - avatar
+ 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>
21st Apr 2017, 2:54 AM
Agus Mei
Agus Mei - avatar
+ 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
21st Apr 2017, 4:01 AM
Otávio Barreto
Otávio Barreto - avatar
+ 1
!gracias Paola MB y Octavio Barreto!
21st Apr 2017, 1:12 PM
Ulises Zagare
Ulises Zagare - avatar
0
and agus mei
21st Apr 2017, 1:13 PM
Ulises Zagare
Ulises Zagare - avatar