-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (96 loc) · 5.08 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="/style.css">
<title>FScalc | Support</title>
</head>
<body>
<div class="container-fluid">
<div class="row section-one">
<div class="col py-4 mx-lg-5 px-lg-5 mx-md-3 px-md-3">
<h2>FScalc</h2>
</div>
</div>
<section class="section-two mx-lg-5 px-lg-5 mx-md-3 px-md-3">
<div class="row my-5 mx-lg-5 mx-md-3">
<div class="col section-two-color py-3">
<img src="./img/stocks_p.png" alt="stocks" class="img-fluid rounded img-color" height="200" width="auto">
</div>
<div class="col section-two-color py-3">
<img src="./img/stocks_d.png" alt="stocks" class="img-fluid rounded img-color" height="400" width="auto">
</div>
<div class="col section-two-color py-3">
<img src="./img/stocks_roi.png" alt="forex" class="img-fluid rounded img-color" height="400" width="auto">
</div>
</div>
<div class="row mb-5 mx-lg-5 mx-md-3">
<div class="col section-two-color py-3">
<img src="./img/forex_p.png" alt="stocks" class="img-fluid rounded img-color" height="400" width="auto">
</div>
<div class="col section-two-color py-3">
<img src="./img/forex_roi.png" alt="stocks" class="img-fluid rounded img-color" height="400" width="auto">
</div>
<div class="col section-two-color py-3">
<img src="./img/chart.png" alt="forex" class="img-fluid rounded img-color" height="400" width="auto">
</div>
</div>
</section>
<section class="section-three mx-lg-5 px-lg-5 mx-md-3 px-md-3">
<div class="row mx-lg-5 mx-md-3 mb-md-5">
<div class="col section-three-color p-lg-5 p-md-3">
<p>Simplicity and ease of use is what we strive to achieve. With our simple, intuitive calculator you can calculate the
following:
<br> - Number of shares to purchase based on percentage of account size or by a fixed amount
<br> - Lot size for Forex position
<br> - Return on investment for Stocks & Forex
<br><br> Side-note: Currency used for calculation is the base currency for which you reside in.
<br> We hope you enjoy using our app. Stay tuned for future features to be added soon!
</div>
</div>
</section>
<section class="section-four mb-5 mx-lg-5 px-lg-5 mx-md-3 px-md-3">
<div class="row mt-lg-5 mt-md-3">
<div class="col mx-lg-5 px-lg-5 mt-lg-4 mb-lg-3 mx-md-3 px-md-3 mt-md-3 mb-md-3">
<h3>Contact Us</h3>
</div>
</div>
<div class="row mx-lg-5 mx-md-3">
<div class="col px-lg-5 pb-lg-5 px-md-3 pb-md-3">
<form action="mailto:[email protected]" method="POST" enctype="text/plain">
<div class="row">
<input type="text" class="form-control" placeholder="Name" name="Name">
</div>
<div class="row mt-3">
<input type="text" class="form-control" placeholder="Email" name="Email">
</div>
<div class="row mt-3">
<textarea name="Issue" id="issue" rows="3" class="form-control" placeholder="Please describe your concern"></textarea>
</div>
<div class="row mt-4">
<div class="col">
<input type="submit" value="Send" class="btn btn-primary px-5">
</div>
</div>
</form>
</div>
</div>
</section>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</script>
</body>
</html>