-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (42 loc) · 2.06 KB
/
Copy pathindex.html
File metadata and controls
46 lines (42 loc) · 2.06 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
<!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">
<link href='https://fonts.googleapis.com/css?family=Mountains of Christmas' rel='stylesheet'>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="./assets/js/script.js" defer></script>
<title>Drag and Drop</title>
</head>
<body>
<canvas></canvas>
<main class="content">
<div class="container">
<div class="row">
<h1 class="h1 title" id="elementsTitle"></h1>
<div class="d-flex elements" id="elements">
<img src="./assets/imgs/1.jpg" class="elements__img" alt="image" />
<img src="./assets/imgs/2.jpg" class="elements__img" alt="image" />
<img src="./assets/imgs/3.jpg" class="elements__img" alt="image" />
</div>
</div>
<div class="row justify-content-center">
<div class="box position-relative">
<h3 class="h3 position-absolute bottom-0 end-0 titleBox" id="titleFlex"></h3>
<div class="d-flex justify-content-center box-flex" id="box_flex">
</div>
<div class="color_backgroundFlex" id="color_backgroundFlex"></div>
</div>
<div class="box position-relative">
<h3 class="h3 position-absolute bottom-0 start-0 titleBox" id="titleFreedom"></h3>
<div class="box-freedom" id="box_freedom">
</div>
<div class="color_backgroundFreedom" id="color_backgroundFreedom"></div>
</div>
</div>
</div>
</main>
</body>
</html>