We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5097f52 commit d05351dCopy full SHA for d05351d
05_circle/index.html
@@ -0,0 +1,25 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Document</title>
7
+ <style>
8
+ body{
9
+ background-color: grey;
10
+ }
11
+ #main {
12
+ height: 10rem;
13
+ width: 10rem;
14
+ border-radius: 5px;
15
+ border-color: black;
16
+ background-color: aqua;
17
18
+ </style>
19
+</head>
20
+<body>
21
+ <div id="main"></div>
22
+
23
+ <script src="script.js"></script>
24
+</body>
25
+</html>
05_circle/script.js
@@ -0,0 +1,4 @@
+const box = document.getElementById('main');
+box.addEventListener('click', {
+})
0 commit comments