20 lines
559 B
HTML
20 lines
559 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
input, textarea {
|
|
margin-top: 5px
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<form id="form" action="https://www.google.com/search" name="form">
|
|
<span id="foo">insert</span> <span>keyword</span><br>
|
|
<input id="keyword" type="text" name="q" value="chromedp"/><br>
|
|
<input id="foo" type="text" name="foo" value="foo"/><br>
|
|
<textarea id="bar" rows="4" cols="50">bar</textarea><br>
|
|
<input id="btn1" type="reset" value="Reset">
|
|
<input id="btn2" type="submit" value="Submit">
|
|
</form>
|
|
</body>
|
|
</html> |