-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorflip.html
54 lines (51 loc) · 2.11 KB
/
colorflip.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
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<title>colorFlip</title>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Bootstrap CSS v5.2.1 -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
</head>
<body class="flex-column align-items-end">
<header class="d-flex justify-content-between m-4">
<!-- place navbar here -->
<p>colorFlip</p>
<a href="www.github.com/nazarenods"><p>NazarenoDS</p></a>
</header>
<main>
<section class="position-absolute top-50 start-50 translate-middle bg-light-subtle p-4 rounded-4">
<h3 id="texto"></h1>
<div class="d-flex justify-content-between">
<button class="btn btn-danger m-2" data-id="buttonshow">Click Me</button>
<button class="btn btn-success m-2" data-id="copy" hidden></button>
</div>
</section>
</main>
<footer class="position-absolute top-100 start-50 translate-middle">
<!-- place footer here -->
<p>Practicando con el DOM...</p>
</footer>
<!-- Bootstrap JavaScript Libraries -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-BBtl+eGJRgqQAUMxJ7pMwbEyER4l1g+O15P+16Ep7Q9Q+zqX6gSbd85u4mG4QzX+"
crossorigin="anonymous"
></script>
<script src="/javascript/colorflip.js"></script>
</body>
</html>