-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_2.html
More file actions
52 lines (38 loc) · 954 Bytes
/
Basic_HTML_2.html
File metadata and controls
52 lines (38 loc) · 954 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<title>2nd Java in HTML</title>
<meta charset="utf-8">
<meta name="K W" content="Javascript and HTML">
</head>
<body>
<main>
<p><h1>2nd Assignment with JavaScript code and HTML</h1></p>
<p><h6></h6></p>
<button onclick="My_First_Function()">
Click Me!
</button>
<p id="Welsh">Guess one thing about me?</p>
<script>
function My_First_Function() {
var String = "Kiss me, I am Welsh !";
var result = String.fontcolor("red");
document.getElementById("Welsh").innerHTML = result;
}
</script>
<p><h3></h3></p>
<!--
<button onclick="My_2nd_Function()">
Click Me!
</button>
<p id="Irish">My friend, How about me?</p>
<script src="Basic_JavaScript_1.js"></script>
-->
</main>
</body>
<footer>
<p></p>
<a href="https://www.google.com/">https://www.google.com</a>
<p>@2026 JavaScript and HTML assignment. All rights reserved.</p>
</footer>
</html>