-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 876 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
<!-- js.html -->
<!DOCTYPE html>
<html>
<head>
<title>JavaScript</title>
</head>
<body>
<h1> This is a header </h1>
<!-- import JavaScript files here -->
<p id='p_name'></p>
<!-- <script src="script.js"></script> -->
<a href="JavaScript:void(0)", onclick="alert('Hello')">Say Hello</a><br> <!-- do not reload the page -->
<a href="JavaScript:void(0)", onclick="alert('Hello by')">Say Bye</a><br> <!-- reload the page -->
<a href="JavaScript:void(0)", onclick="alert('Bye via function')">Bye-function</a><br>
<a href="JavaScript:void(0)",
onmouseover="this.style.color='red'",
onmouseleave="this.style.color='blue'",
onmouseup="this.text='Not clicked'",
onmousedown="this.text='You clicked me'">
Not clicked
</a><br>
<!-- import JavaScript files here -->
<script src="asset/js/my_javascript.js"></script>
</body>
</html>