-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpickABank.html
More file actions
28 lines (25 loc) · 946 Bytes
/
pickABank.html
File metadata and controls
28 lines (25 loc) · 946 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
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1 class="header">Pick A Bank</h1>
<h2>Javascript in the DOM</h2>
<h2>How To Use Javascript To Manipulate The HTLM & CSS</h2>
<button id="button-pick-bank">Pick A Bank</button>
<button id="button-pick-button">Pick A Color</button>
<h3 id="bank-name"></h3>
<h4 id="bank-ussd"></h4>
<img src="" id="bank-logo" />
<div id="container"></div>
</body>
<!-- <script src="first.js"></script> -->
<!-- <script src="./second.js"></script> -->
<!-- <script src="./third.js"></script> -->
<!-- <script src="./evenOrOdd.js"></script> -->
<!-- <script src="./prime.js"></script> -->
<!-- <script src="./functionOne.js"></script> -->
<!-- <script src="./almightyFormular.js"></script> -->
<!-- <script src="./colors.js"></script> -->
<script src="./pickABank.js"></script>
</html>