Skip to content

Commit

Permalink
index2.htmlを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshifumi0521 committed Oct 3, 2012
1 parent 4f128ff commit e29fc43
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
29 changes: 29 additions & 0 deletions index2.html
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<title>script内の関数を実行</title>
<meta charset="UTF-8">
</head>
<script>
//textを埋めるためのscript
function filltext()
{

var text = document.getElementById("text");
text.innerHTML = "Hello World";
}
filltext();

</script>
<body>

<p id="text">〇〇〇</p>






</body>
</html>

0 comments on commit e29fc43

Please sign in to comment.