Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

97
Views
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 answers
Answer question

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 Report

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 Report

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!