-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
26 lines (26 loc) · 883 Bytes
/
hello.html
File metadata and controls
26 lines (26 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>Welcome</title>
<script type="text/javascript">
<!--
function showHello() {
var name = document.getElementById("name_text").value;
alert("Hello, " + name);
}
// -->
</script>
</head>
<body>
<div id="main" style="text-align:center;">
<h2>for CV</h2>
<label for="name_text">名前:</label><input id="name_text" name="name_text" value="" style="padding: 5px 5px;">
</div>
<div id="button" style="text-align:right;">
<button type="button" name="name_button" onclick="showHello()" style="padding: 5px 5px;">Click me!</button>
</div>
</body>
</html>