-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Stock Target Price Calculator using DCF model</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 50px;
padding: 0;
text-align: center;
}
form {
margin-bottom: 20px;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
width: 300px;
}
input[type="submit"] {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
#result {
font-size: 20px;
margin-top: 20px;
}
</style>
</head>
<body>
<h1>Stock Target Price Calculator DCF model</h1>
<form id="stockForm">
<input
type="text"
id="ticker"
placeholder="Enter stock ticker (e.g., AAPL)"
required
/>
<input type="submit" value="Calculate" />
</form>
<div id="result"></div>
<script src="script.js"></script>
</body>
</html>