-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprediction.html
33 lines (29 loc) · 879 Bytes
/
prediction.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
<!DOCTYPE html>
<html>
<head>
<title>Stock Price Prediction</title>
<style>
/* Your existing CSS styles */
/* Add a new style to control the plot's appearance */
.plot-container {
width: 700px;
height: 500px;
margin: 20px auto;
}
.predicted-header {
font-size: 24px;
color: #007BFF;
}
</style>
</head>
<body>
<h1>GOOG Close Price Prediction for Tomorrow </h1>
<p><strong>Today's Date:</strong> 11-08-2023 </p>
<p><strong>Close Price:</strong> 133.26</p>
<p><strong>Volume:</strong> 15077400 </p>
<p><strong>Open Price:</strong> 132.36 </p>
<p><strong>High Price:</strong> 133.54 </p>
<p><strong>Low Price:</strong> 132.16 </p>
<h2 class="predicted-header"> Predicted Close Price for 11-09-2023: 134.19 </h2>
</body>
</html>