-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (29 loc) · 883 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Javascipt Color Switcher</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body >
<nav >
<a href="/" aria-current="page">Home</a>
<button class="back">Back</button>
<a href="#" >Linkedin</a>
</nav>
<div class="canvas" >
<h1>Color Scheme Switcher</h1>
<span class="btn" id="red"></span>
<span class="btn" id="green"> </span>
<span class="btn" id="yellow"></span>
<span class="btn" id="blue"></span>
<h2 id="change">Try Clicking One of the Colors above <span>to Change the background color of the page !</span> </h2>
<footer>
<p>Made with 💓 by Vikas</p>
<p>© 2024 . All rights reserved.</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>