-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (28 loc) · 839 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeatherApp</title>
</head>
<body>
<form action="/" method="POST">
<label for="cityInput">stockName: </label>
<input type="text" name="stockName" id="stockInput">
<button type="submit">Search</button>
</form>
<script src ='app.js'></script>
<script src="path/to/alphavantage/dist/bundle.js"></script>
<!-- <script type="application/javascript">
/**
* Init Alpha Vantage with your API key.
*
* @param {String} key
* Your Alpha Vantage API key.
*/
const alpha = alphavantage({
key: 'VIROL8PEM17WAZYM'
});
</script> -->
</body>
</html>