-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
48 lines (37 loc) · 982 Bytes
/
Copy pathAssignment.html
File metadata and controls
48 lines (37 loc) · 982 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My First Html Page</title>
</head>
<body>
<header>
<nav>
<a href="https://www.google.com/">home</a>
<a href="Dog1.html">Dog picture</a>
<a href="dog_video.html">Dog video</a>
</nav>
</header>
<button onclick="myfirstfunction()">
click me
</button>
<p id="irish"></p>
<script>
function myfirstfunction(){
var string = "kiss me , i am irish";
var result = string.fontcolor("green");
document.getElementById("irish").innerHTML=result;
}
</script>
<main>
<p ><font color="yellow" face="Verdana" size="7">This is paragraph tesing for font face and font size </font></p>
<p><b>this is bold</b><i>this is italic</i><u>this is underline</u></p>
<h1 >This is Heading 1</h1>
<h3>This is Heading 3</h3>
<h6>This is Heading 6</h6>
</main>
<footer>
<p> Copyright @2026</p>
</footer>
</body>
</html>