Skip to content

Commit 308dc6d

Browse files
committed
form created but not connected yet
1 parent 433a235 commit 308dc6d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

user-input-with-forms/studio/index.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,26 @@
1313
<body>
1414

1515
<form id="searchForm">
16+
<input type="text" name="q">
1617
<!-- TODO: add form elements -->
18+
<label>
19+
<input type="radio" name="engine" value="google">
20+
Google
21+
</label>
22+
<label>
23+
<input type="radio" name="engine" value="bing">
24+
Bing
25+
</label>
26+
<label>
27+
<input type="radio" name="engine" value="duckduckgo">
28+
DuckDuckGo
29+
</label>
30+
<label>
31+
<input type="radio" name="engine" value="ask">
32+
Ask
33+
</label>
34+
35+
<button type="submit">Go!</button>
1736
</form>
1837

1938
</body>

0 commit comments

Comments
 (0)