-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 957 Bytes
/
index.html
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
27
<!DOCTYPE html>
<html>
<head>
<title>JavaScript</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="script.js" ></script>
</head>
<body>
<!-- <p>Es folgt der erste Teil des Body</p>
<script type="text/javascript">
document.write("<p> das steht im ersten Teil <\/p>");
</script>
<p>Es folgt der nächste Teil</p>
<script type="text/javascript">
document.write("<p> das steht im zweiten Teil<br>");
document.write("Dasist die nächste Zeile aus dem body <\/p>");
</script>
<script type="text/javascript">
document.write("<p> das kommte aus local <\/p>");
</script>
-->
</body>
</html>