-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (26 loc) · 942 Bytes
/
index.html
File metadata and controls
29 lines (26 loc) · 942 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background color change</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="hero">
<h1>Background Color Changer</h1>
<img class="color" src="image/color.jpeg" width="200px" alt="color_img">
<p>click on the below circle to change the background color </p>
<div class="container">
<div class="box" id="box1"></div>
<div class="box" id="box2"></div>
<div class="box" id="box3"></div>
<div class="box" id="box4"></div>
<div class="box" id="box5"></div>
</div>
<p><i>with HTML, CSS and JAVASCRIPT</i></p>
<img src="image/html_css_js.png" width="300px" alt="html_css_js">
</section>
<script src="script.js"></script>
</body>
</html>