mirror of
https://github.com/GoogleChrome/chrome-extensions-samples.git
synced 2026-04-01 14:20:01 +07:00
19 lines
290 B
HTML
Executable File
19 lines
290 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Hello World</title>
|
|
<script src="window.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<form id="main-form">
|
|
<input id="your-name" size="30">
|
|
<input type="submit">
|
|
</form>
|
|
|
|
Your name is: <div id="output"></div>
|
|
|
|
</body>
|
|
</html>
|