-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerator_form.html
27 lines (27 loc) · 1.17 KB
/
generator_form.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>What's My Name: Name Generator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script src="index.js"></script>
<div class ="text_body">
<form>
<h2 class= "selection_title"> Name </h2>
<input type ="radio" name ="name" value="First Name" style="height:20px; width:20px; vertical-align: middle;" class="radio_buttons" id="name_selection">First Name<br/>
<input type="radio" name="name" value="Last Name" style="height:20px; width:20px; vertical-align: middle;" class="radio_buttons" id="name_selection">Last Name<br/>
<!--
<h2>Language</h2>
<input type="radio" name="language" value="english">English<br/>
<input type="radio" name="language" value="spanish">Spanish<br/>
<input type="radio" name="language" value="french">French<br/>
-->
<input class="button_styling" type="button"onclick="selectionMade()" target= "_blank" value="Next">
</form>
</div>
</body>
</html>