-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathtask1.html
31 lines (30 loc) · 1.07 KB
/
task1.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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Swiggy i++ Stage 2 Day 1</title>
</head>
<body>
<!--Inline Script-->
<a href="/" onClick="alert('Coming from inline script');">Inline Script</a>
<!--Internal Script-->
<script>
function internalScript(){
alert("Coming from Internal Script");
}
</script>
<a href="/" onClick="internalScript()">Internal Script</a>
<!--External Script-->
<script src="task1.js">
</script>
<a href="/" onclick="externalFunction()">External Script</a>
<a href="/" onclick="useInrHtml()">Use of innerHTML</a>
<a href="/" onclick="useAlert()">Use of alert</a>
<a href="/" onclick="usePrint()">Use of print</a>
<a href="/" onclick="useConsoleLog()">Use of console.log</a>
<a href="/" onclick="useDocWrite()">Use of document.write</a>
<div id="id1"></div>
</body>
</html>