blob: b55a1eb31dc5ea3f5b5e467d07ce6e69368064ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Forms</title>
<meta name="viewport" content="minimum-scale=1,width=device-width">
</head>
<body>
<form id="form1" name="form1" action="form_blank.html" method="get" target="_blank">
<input type="text" id="search" value="foo">
<input type="submit">
</form>
</body>
</html>
|