-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoverview.html
executable file
·59 lines (52 loc) · 2.58 KB
/
overview.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
55
56
57
58
59
<html>
<body>
<h1>Overview Page</h1>
<h2> Show Number of Shows Added on Netflix Timeline</h2>
<br>
<form action="content_overview.php" method="post">
<button type="submit" name="submit">Show Graph</button>
<br>
</form>
<br>
<h2> Show Covid Data Timeline for Desired Country</h2>
<ul>
<li>Country: Country where the record was collected fromm. First letter of the country should be upper-case: United States.
You can also type "World" to see timeline of daily new cases of the entire world. </li>
</ul>
<br>
<form action="covid_overview.php" method="post">
<input type="text" name="country" placeholder="Country">
<br>
<select name="type" id="type">
<option value="total_case">total_case</option>
<option value="new_case">new_case</option>
<option value="new_deaths_per_million">new_deaths_per_million</option>
</select>
<br>
<br>
<button type="submit" name="submit">Show Graph</button>
<br>
</form>
<br>
<h2> Show Financial Data of Netflix Timeline</h2>
<ul>
<li>revenue: revenue is the total amount of income generated by the sale of goods or services related to the company's primary operations. </li>
<li>rd_expense: research and development expenditure is the money spent on creative work undertaken on a systematic basis to increase the stock of knowledge and the use of this knowledge to devise new applications.</li>
<li>net_income: net income refers to the amount an individual or business makes after deducting costs, allowances and taxes. </li>
<li>earnings_per_share: earnings per share (EPS) is a figure describing a public company's profit per outstanding share of stock, calculated on a quarterly or annual basis. In our project, we use quarterly data.</li>
</ul>
<form action="financial_overview.php" method="post">
<br>
<select name="type" id="type">
<option value="revenue">revenue</option>
<option value="rd_expense">rd_expense</option>
<option value="net_income">net_income</option>
<option value="earnings_per_share">earnings_per_share</option>
</select>
<br>
<br>
<button type="submit" name="submit">Show Graph</button>
<br>
</form>
</body>
</html>