So, I decided to do a little science project using some simple HTML and PHP as I'm 13 and got bored. So I was doing this and realized I didn't know how to center the radio button below the image. Here's a link to see what I've basically got so far:
<html>
<head>
<title> Names to Faces </title>
</head>
<body>
<p>Names to Faces (NtF) is a Science Project that was created to see if people see certain names as looking a certain way. We will give you 15 names and 4 pictures for each name for you to choose which of those pictures matches the name.</p>
<p><strong>Question 1</strong>: Who is named Mike?</p>
<div name="answer1div">
<input type="radio" name="answer1" value="a"><img src="mike1.jpeg" /></input>
<input type="radio" name="answer1" value="b"><img src="mike2.jpeg" /></input>
<input type="radio" name="answer1" value="c"><img src="mike3.jpeg" /></input>
<input type="radio" name="answer1" value="d"><img src="mike4.jpeg" /></input>
</div>
</body>
</html>