-
Notifications
You must be signed in to change notification settings - Fork 0
/
add-a-company.html
77 lines (66 loc) · 2.87 KB
/
add-a-company.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- jquery refactor link -->
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<!-- ======= Nav Bar Section & Head Tag files imported from another file ======= -->
<div id="nav-placeholder"></div>
<script>
$.get("navBar.html", function(data){
$("#nav-placeholder").replaceWith(data);
});
</script>
<section class="section section-bg1">
<div class="container section-bg2" id="add-company">
<div class="section-title">
</br>
<h3 data-aos="fade-in">Add a Company</h3>
</div>
<h4> Copy/paste the terms & conditions from any e-commerce* website. </br>
We’ll show you the results. </h4>
</br>
<div id="add-company-desciption">
<p>* <a href="https://en.wikipedia.org/wiki/E-commerce"
class="link" target="_blank">E-commerce</a> is defined broadly as any website
that sells products. </p>
<p>Since the algorithm was made with e-commerce sites in mind,
it works best on them. However, it will still yield results for
other types of sites - try it out and <a href="#"
class="link">let us know</a> how it goes! </p>
<div id="add-company-form">
<textarea>paste the entire document...</textarea>
<input type="submit" class="btn-submit" value="Test it!">
</div>
</div>
</div>
</section>
<!-- ======= Footer & JS files + Firebase imported from another file ======= -->
<div id="footer-placeholder"></div>
<script>
$.get("footer.html", function(data){
$("#footer-placeholder").replaceWith(data);
});
</script>
<!-- Top of page arrow -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<!-- FIREBASE -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-app.js"></script>
<!-- Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.14.1/firebase-database.js"></script>
<!-- END FIREBASE -->
</body>
</html>