Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(853)

Unified Diff: src/site/docs/tutorials/forms/examples/search_form/web/search_form.html

Issue 26542002: edit pass on T3,4,5, updated images (Closed) Base URL: https://github.com/dart-lang/dartlang.org.git@master
Patch Set: merging with master Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
diff --git a/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html b/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
new file mode 100644
index 0000000000000000000000000000000000000000..62754e66efece13487b6ba0b1cacc077e80874d3
--- /dev/null
+++ b/src/site/docs/tutorials/forms/examples/search_form/web/search_form.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+
+<html>
+ <head>
+ <meta charset="utf-8">
+ <title>Search for it</title>
+ <link rel="stylesheet" href="search_form.css">
+
+ </head>
+ <body>
+ <h1>Search dartlang.org</h1>
+
+ <div class="sample_container_id">
+ <form action="http://www.google.com/search"
+ method="GET"
+ target="_blank">
+ <input type="text" name="q"
+ value="Cookbook" size="31" maxlength="255">
+ <input type="submit" value="Google Search">
+ <label>
+ <input type="checkbox" name="sitesearch"
+ value="dartlang.org" checked> Search dartlang.org<br>
+ </label>
+ </form>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698