- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / examples / extensions / email_this_page / options.html
1 <!DOCTYPE>
2 <!--
3  * Copyright (c) 2012 The Chromium Authors. All rights reserved.  Use of this
4  * source code is governed by a BSD-style license that can be found in the
5  * LICENSE file.
6 -->
7 <html>
8 <head>
9   <title>Options for the Send as Email extension</title>
10 <style>
11 #providerSelection {
12   font-family: Helvetica, Arial, sans-serif;
13   font-size: 10pt;
14 }
15 </style>
16 <script src="options.js"></script>
17 </head>
18 <body>
19 <table class="simple">
20 <tr>
21   <td rowspan="2" valign="top" align="center" width="80">
22     <img src="mail_128x128.png" width="64" height="64" />
23   </td>
24   <td height="22"></td>
25 </tr>
26 <tr>
27   <td valign="center">
28     <div id="providerSelection">
29     <strong>Select provider to use when emailing a web page address:</strong>
30     <br /><br />
31     <label>
32       <input id="default" type="radio" name="mailto" value="mailto" checked>
33       Your default mail handler<br>
34     </label>
35
36     <label>
37       <input id="gmail" type="radio" name="mailto" value="gmail">Gmail<br>
38     </label>
39     </div>
40   </td>
41 </tr>
42 </table>
43 </body>
44 </html>