-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_1.html
More file actions
41 lines (32 loc) · 1.22 KB
/
Basic_HTML_1.html
File metadata and controls
41 lines (32 loc) · 1.22 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<title>1st Java in HTML</title>
<meta charset="utf-8">
<meta name="K Wang" content="Javascript in HTML">
</head>
<body>
<main>
<p><h1><font color="blue" face="Impact" size="7"><i>1st Assignment with JavaScript code in HTML</i></font></h1></p>
<p><h6></h6></p>
<script>
alert("Hello, World! written by JavaScript in HTML");
</script>
<p><h6></h6></p>
<script src="Hello_World.js"></script>
<p><h6></h6></p>
<script src="Basic_JavaScript_1.js"></script>
<p><h4></h4></p>
<img sc="WelshFlower.jpeg" alt="Welsh national flower, daffodil (Narcissus)" />
<p><h4></h4></p>
<p><font color="red" face="Arial" size="3">Sorry due to <i>typo</i> the <b>flower picture</b> cannot be shown. Below we show it again.</font></p>
<img src="WelshFlower.jpeg" alt="Welsh national flower,daffodil (Narcissus)" />
<p><h4>Welsh national flower, <u>daffodil</u> (Narcissus)</h4></p>
</main>
</body>
<footer>
<p></p>
<a href="https://www.google.com/"><font color="orange" face="Verdana" size="3">https://www.<b>google</b>.com</font></a>
<p><font color="#800000" face="Trebuchet MS" size="2">@2026 <u>Java in HTML</u> assignment. All rights reserved.</font></p>
</footer>
</html>