-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNEW.p_3.html
More file actions
33 lines (25 loc) · 1.07 KB
/
NEW.p_3.html
File metadata and controls
33 lines (25 loc) · 1.07 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<title>Color Flipper</title>
</head>
<body>
<nav class="navbar navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
PROJECT - 3 Color Flipper
</a>
</div>
</nav>
<div class="jumbotron my-3 ">
<div class="container ">
<h1 class="display-6" id="colorname">Background Color: <span><button type="button" class="btn btn-outline-secondary color" id="color"> Click </button></span> </h1>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<script src="NEW.p_3.js"></script>
</body>
</html>