-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 1.28 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Asynchronous Iterators & Generators</title>
</head>
<body>
<h1>This is a basic HTML template.</h1>
<div
id="clickable"
style="
width: 100px;
height: 100px;
background-color: lightblue;
border: 2px solid black;
border-radius: 5px;
box-shadow: 2px 2px 5px gray;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
margin-bottom: 100px;
"
>
Click me
</div>
<div
id="draggable"
style="
width: 100px;
height: 100px;
background-color: rgb(119, 181, 119);
border: 2px solid black;
border-radius: 5px;
box-shadow: 2px 2px 5px gray;
cursor: pointer;
display: flex;
position: absolute;
justify-content: center;
align-items: center;
text-align: center;
"
>
Move me
</div>
<script src="./Asynchronous Iterators & Generators. Reactive Programming technique.js"></script>
</body>
</html>