html
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
28
<html>
<head></head>
<body>
<h2 style="background-color: #ffca3a;">Order now!</h2>
<form>
<label>Size: </label>
<select>
<option>Small</option>
<option>Big</option>
</select>
<label>Color: </label>
<select>
<option>Red</option>
<option>blue</option>
</select>
<br>
<label for="n">Name: </label>
<input type="text" id="n"/>
<br>
<label for="em">Email: </label>
<input type="email" id="em"/>
<br>
<input type="submit" style="border:none; border-radius:5px;" onclick="alert('Order Confirmed')">
</form>
<footer style="background-color: #ffca3a;">
<p>Made with </p>
</footer>
Enter to Rename, Shift+Enter to Preview
css
css
1
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run