Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

101
Vistas
HTML button isn’t showing up

Ok, I’m new to all this, and this is a test website, and I’ve been searching the web for solutions for like an hour. This button in html isn’t showing up even though I used the right tags and stuff… is there a piece of code I need to input to import JavaScript or something? I know is a thing but I’ve seen people put it inside the tags like I did. I don’t know what I’m doing wrong.

<!doctype html>
<html> 
<head><h1>Do you like pineapple on pizza?</h1></head><br>
<body> 
<label for="pizza-select">Tell the truth. C'mon...</label>
<select id="pizza-select">
<option value= "">Pick one goddamn it.</option>
<option value= "yes">Yes, I feel special for having an unpopular opinion</option>
<option value= "no">No, I am close minded and hate having fun</option> <br>
<button onclick="alert('eh idc')">Done</button>
</body> 
</html>
about 4 years ago · Juan Pablo Isaza
3 Respuestas
Responde la pregunta

0

Main problem

Looks like you forgot to close your select tag which is the root of your button issue.

Further notes

Using an h1 in the head is not allowed, and will not work. If you are looking for a tab/page title I would recommend using the <title> tag as shown below. You can use the h1 as your content headline, but make sure to keep it in your body.

<!doctype html>
<HTML> 

<head>
<title>Do you like pineapple on pizza?</title>
</head>

<body> 
<h1>Do you like pineapple on pizza?</h1>
<label for="pizza-select">Tell the truth. C'mon...</label>
<select id="pizza-select">
<option value= "">Pick one goddamn it.</option>
<option value= "yes">Yes, I feel special for having an unpopular opinion</option>
<option value= "no">No, I am close minded and hate having fun</option>
</select>
<br>
<button onclick="alert('eh idc')">Done</button>
</body> 
</html>

about 4 years ago · Juan Pablo Isaza Denunciar

0

You didn't close the select tag:

<!doctype html>
<html> 
<head><h1>Do you like pineapple on pizza?</h1></head><br>
<body> 
<label for="pizza-select">Tell the truth. C'mon...</label>
<select id="pizza-select">
<option value= "">Pick one goddamn it.</option>
<option value= "yes">Yes, I feel special for having an unpopular opinion</option>
<option value= "no">No, I am close minded and hate having fun</option>
</select>
<br>

<button onclick="alert('eh idc')">Done</button>
</body> 
</html>

about 4 years ago · Juan Pablo Isaza Denunciar

0

Every thing good as now. you don't need to add head you can directly add text into body or add with heading tags

<!doctype html>
<html>
<title>Pizza</title>
<body>
<h1>Do you like pineapple on pizza?</h1><br>
<label for="pizza-select">Tell the truth. C'mon...</label>
<select id="pizza-select">
<option value= "">Pick one goddamn it.</option>
<option value= "yes">Yes, I feel special for having an unpopular opinion</option>
<option value= "no">No, I am close minded and hate having fun</option>
</select>
<br>

<button onclick="alert('eh idc')">Done</button>
</body> 
</html>

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda