-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 948 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
<!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>Modern JavaScript</title>
</head>
<body>
<script src="./script.js"></script>
<script src="./variable.js"></script>
<script>
console.log("Hello, World!")
console.log("Welcome, Abike")
</script>
<h2>Welcome to Modern JavaScript</h2>
<button onclick = "alert ('Welcome')"> Click here</button>
<button onmouseover="alert ('Click here')"> More info </button>
<button ondblclick="alert ('Thank you')"> Hey You</button>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate assumenda voluptatem accusantium quis expedita dolorem, perferendis vitae, nam exercitationem dolor unde omnis magni laudantium aperiam cupiditate, inventore adipisci atque sapiente.</p>
</body>
</html>