1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
<html>
<head><title>tc_pretty_print.html</title></head>
<body>
<a href="http://google.com/">Google</a><br />
<form method="post" action="/form_post" name="form1">
<input type="text" name="first_name"/><br />
<input type="password" name="password" /><br />
<input type="hidden" name="secret" value="hey" />
<input type="checkbox" name="checkme" />
<input type="radio" name="r" value="one" /><br />
<input type="radio" name="r" value="two" /><br />
<input type="submit" value="Submit" />
</form>
<frame src="http://memepool.com/" />
<iframe src="http://memepool.com/" />
</body>
</html>
|