-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpredict.html
80 lines (77 loc) · 3.33 KB
/
predict.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, inital-scale=1">
<title>Digital Currency Stats</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<div class="container">
<div id="header" class="row">
<div class="col-md-4">
<a href="index.html">Home</a></li>
</div>
<div class="col-md-4">
<a href="about.html">About</a></li>
</div>
<div class="col-md-4">
<a href="predict.html">WhatIf</a></li>
</div>
</div>
<div class="row">
<div class="col-md-12" id="description">
<p>This is the place where you will know the money you should have earned if you have invested earlier</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<form onsubmit="profit(event)">
<div class="col-md-12">
<p>Enter the amount($) you would have invested</p>
<input type="text" id="bitcoin">
</div>
<p>On which date you would have invested</p>
<input type="date" data-date-format="YYYY-MM-DD" min="2010-07-17" id="demo1"><br>
<p></p>
<input type="submit" value="submit">
</form>
<div class="row">
<div class="col-md-12">
<h1 id="profit1"></h1>
</div>
</div>
</div>
</div>
<div class="row">
<p>
</p><br>
<p></p><br>
<div class="col-md-12"><h2>Contact Me</h2></div>
</div>
<div class="row">
<div class="col-md-12">
<a href="https://www.facebook.com/profile.php?id=100001152404225" class="fa fa-facebook">f</a>
<a href="https://twitter.com/_vikas_gupta_" class="fa fa-twitter">t</a>
<a href="https://plus.google.com/111294222978414349224" class="fa fa-google">G+</a>
<a href="https://www.linkedin.com/in/vikas-gupta-56885b131/" class="fa fa-linkedin">in</a>
</div>
</div>
<footer>
<p>© Vikas</p>
</footer>
</div>
<script type="text/javascript" src="js/jquery-3.2.1.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103003183-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>