-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventCapturing.html
More file actions
98 lines (90 loc) · 2.09 KB
/
Copy patheventCapturing.html
File metadata and controls
98 lines (90 loc) · 2.09 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Capturing</title>
<style>
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
body{
padding: 30px;
}
#main{
width: 100%;
height: 100%;
background-color: #222;
}
#nav{
width: 100%;
height: 100px;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #444;
}
a{
color: white;
text-decoration: none;
font-weight: 500px;
}
button{
padding: 10px 20px;
border-radius: 10px;
border: none;
font-size: 20px;
background-color: #888;
}
.lt{
text-decoration: line-through;
}
.a{
width: 80%;
height: 80%;
background-color: red;
}
.b{
width: 80%;
height: 80%;
background-color: green;
}
.c{
width: 80%;
height: 80%;
background-color: blue;
}
</style>
</head>
<body>
<!-- <div id="main">
<div id="nav">
<a href="">Home</a>
<a href="">About</a>
<button>Click and Follow Us</button>
</div>
</div> -->
<!-- <ul>
<li>Apple</li>
<li>Guava</li>
<li>Orange</li>
<li>Papaya</li>
<li>Watermelon</li>
</ul> -->
<div class="a">
<div class="b">
<div class="c">
<button >Click Me</button>
</div>
</div>
</div>
<script src="eventCapturing.js"></script>
</body>
</html>