forked from aldfjaldk/XYZcompany
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (123 loc) · 6.85 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html>
<head>
<title>Blue Buck Website</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<link rel = "stylesheet" href="./Home/styles.css">
</head>
<body>
<header class="p-3 shadow-sm">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-auto logo">
<img src="./Home/images/logo.png" alt="Blue Buck Logo">
<h1>Blue<br> Buck</h1>
</div>
<div class="col-auto">
<ul class="nav-menu">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="productsDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Products
</a>
<ul class="dropdown-menu" aria-labelledby="productsDropdown">
<li><a class="dropdown-item" href="#">Blue Buck Financial Management</a></li>
<li><a class="dropdown-item" href="#">Payroll</a></li>
<li><a class="dropdown-item" href="#">Analytics and Reporting</a></li>
<li><a class="dropdown-item" href="#">Spend Management</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="customersDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Customers
</a>
<ul class="dropdown-menu" aria-labelledby="customersDropdown">
<li><a class="dropdown-item" href="#">Overview</a></li>
<li><a class="dropdown-item" href="#">Customer Stories</a></li>
<li><a class="dropdown-item" href="#">Deployment</a></li>
<li><a class="dropdown-item" href="#">Community</a></li>
<li><a class="dropdown-item" href="#">Support</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="companyDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Company
</a>
<ul class="dropdown-menu" aria-labelledby="companyDropdown">
<li><a class="dropdown-item" href="#">Overview</a></li>
<li><a class="dropdown-item" href="#">Our Story And Leadership</a></li>
<li><a class="dropdown-item" href="#">Our Values</a></li>
<li><a class="dropdown-item" href="#">Public Policy</a></li>
<li><a class="dropdown-item" href="mailto:bluebuck@gmail.com">Contact Us</a></li>
</ul>
</li>
</ul>
</div>
<div class="col-auto">
<form class="search-form">
<input type="text" class="form-control" id="search-input" placeholder="Search">
<span class="input-group-text" onclick="search()">
<img src="https://th.bing.com/th/id/OIP.P710z9NCBfIr6vNnv506mwHaHW?pid=ImgDet&w=2400&h=2382&rs=1" alt="Search Icon" class="search-icon">
</span>
</form>
</div>
<div class="col-auto">
<a class="btn btn-danger signup-button" href="./Login/signup.html">Sign Up</a>
<a class="btn btn-danger signup-button" href="./Login/login.html">Log In</a>
</div>
</div>
</div>
</header>
<div class="section bg-white p-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="./Home/images/people.png" alt="People Discussing" class="img-fluid">
</div>
<div class="col-lg-6 text-center">
<h2 class="mb-4">Your Life's Work, Powered by Our Life's Work</h2>
<h4 class="mb-4">A unique and powerful software suite to transform the way you work. Designed for businesses of all sizes, built by a company that values your privacy.</h4>
<button class="btn btn-danger d-block mx-auto" onclick="window.location.href='./Login/signup.html'">GET STARTED</button>
</div>
</div>
</div>
</div>
<div class="section bg-light py-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class = "text-center">
</div>
<img src="./Home/images/cube.png" alt="Blue Buck Logo" class="mx-auto d-block mb-4 des">
<div class="sub-paragraph">
<h3 class="text-center mb-4">All-in-One Suite</h3>
<p class="text-center mb-4" style="font-size: 18px; color: #555;">BLUE BUCK ONE - the operating system for business.</p>
<p class="text-center mb-4" style="font-size: 16px; color: #555;">Run your entire business on Blue Buck with our unified cloud software, designed to help you break down silos between departments and increase organizational efficiency.</p>
<button class="btn btn-warning d-block mx-auto">TRY BLUE BUCK ONE</button>
</div>
</div>
<div class="col-lg-6">
<div class="quote-container">
<p class="quote">"You can be a startup, mid-sized company, or an enterprise—<br>Blue Buck One is a boon for all."</p>
<p class="quote-author">(CEO, BLUE BUCK)</p>
</div>
</div>
</div>
</div>
</div>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("./Components/header.html");
$("#footer").load("./Components/footer.html");
});
</script>
<div id="footer"></div>
<script src = "./scripts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>