-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircuit.html
106 lines (90 loc) · 3.47 KB
/
circuit.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
104
105
106
<!DOCTYPE html>
<html lang="zxx" class="no-js">
<head>
<!-- Mobile Specific Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Favicon-->
<link rel="shortcut icon" href="img/fav.png">
<!-- Meta Description -->
<meta name="description" content="">
<!-- Meta Keyword -->
<meta name="keywords" content="">
<!-- meta character set -->
<meta charset="UTF-8">
<!-- Site Title -->
<title>Circuit</title>
<link href="https://fonts.googleapis.com/css?family=Poppins:300,500,600" rel="stylesheet">
<!--
CSS
============================================= -->
<link rel="stylesheet" href="css/linearicons.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/nice-select.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body style ="background: #5e42a6; background: -webkit-linear-gradient(to top, #e2a1bc, #5e42a6);
background: linear-gradient(to top, #e2a1bc, #5e42a6)">
<div class="main-wrapper-first">
<header>
<div class="container">
<div class="header-wrap">
<div class="header-top d-flex justify-content-between align-items-center">
<div class="logo">
<a href="index.html"><img src="images/pic16.png" alt="" style="height: 64px; width: 128px"></a>
</div>
<div class="main-menubar d-flex align-items-center">
<nav class="hide">
<a href="index.html">Home</a>
<a href="visualization.html">Visualization</a>
<a href="predictions.html">Predictions</a>
<a href="all_stocks.html">All Stocks</a>
<a href="circuit.html">Circuit</a>
</nav>
<div class="menu-bar"><span class="lnr lnr-menu"></span></div>
</div>
</div>
</div>
</div>
</header>
<div class="banner-area">
<div class="container">
<div class="row justify-content-center generic-height align-items-center">
<div class="col-lg-8">
<div class="banner-content text-center">
<h2 class="text-white">Circuit</h2>
<p class="mb-0 mt-10 text-white">Know whether the stock is hitting upper or lower circuit.</p>
</div>
</div>
</div>
</div>
</div>
<!-- Start Feature Area -->
<section class="featured-area">
<!-- Circuit Collab BEGIN -->
<script src="https://gist.github.com/jayoswal/0562008f5ef795b37cc08e17570f1cab.js"></script>
<!-- Circuit Collab END -->
</section>
<!-- End Feature Area -->
</div>
<div class="main-wrapper">
<!-- Start footer Area -->
<footer class="footer-area">
<div class="container">
<div class="footer-content d-flex flex-column align-items-center">
<div class="copy-right-text">Copyright © 2022 All rights reserved | Carpe Diem </div>
</div>
</div>
</footer>
<!-- End footer Area -->
</div>
<script src="js/vendor/jquery-2.2.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/jquery.ajaxchimp.min.js"></script>
<script src="js/jquery.nice-select.min.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>