-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
54 lines (54 loc) · 1.57 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css"
integrity="sha512-EZLkOqwILORob+p0BXZc+Vm3RgJBOe1Iq/0fiI7r/wJgzOFZMlsqTa29UEl6v6U6gsV4uIpsNZoV32YZqrCRCQ=="
crossorigin="anonymous"
/>
<title>JavaScript A to Z</title>
</head>
<body>
<main>
<div class="fl">
<h1>JavaScript A to Z</h1>
<span>Let's Explore JS</span>
</div>
<!-- <div class="container">
<button id="button">Get Data</button>
<br />
<div class="output"></div>
</div>
<div class="container">
<button id="button1">Get Customer</button>
<button id="button2">Get Customers</button>
<br />
<h1>Customer</h1>
<div id="customer"></div>
<h1>Customers</h1>
<div id="customers"></div>
</div>
<!--Quote App-->
<div class="container">
<form>
<h2>Get Quote</h2>
<div>
<label for="number">Number of Quotes</label>
<input type="number" id="number" />
</div>
<div>
<button class="get-jokes">Get Quote</button>
</div>
</form>
<ul class="jokes"></ul>
</div>
<script src="App.js"></script>
<!-- <script src="AtoZ.js"></script> -->
<!-- <script src="ES6.js"></script>-->
</main>
</body>
</html>