-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (37 loc) · 936 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
gap: 23px;
}
.box {
display: flex;
justify-content: center;
align-items: center;
height: 45px;
width: 45px;
border: 2px solid black;
}
</style>
</head>
<body>
<!--
Given 5 boxes, Assign a random color and a random background to each box using DOM concepts
-->
<div class="container">
<div class="box" id="box1">Box</div>
<div class="box" id="box2">Box</div>
<div class="box" id="box3">Box</div>
<div class="box" id="box4">Box</div>
<div class="box" id="box5">Box</div>
</div>
<script src="index.js"></script>
</body>
</html>