-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhd.html
More file actions
114 lines (105 loc) · 3.85 KB
/
hd.html
File metadata and controls
114 lines (105 loc) · 3.85 KB
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
<!DOCTYPE html>
<html class="no-js" lang="zxx">
<head>
<!-- Meta Tags -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="keywords" content="Chronus, Project, Management, Charity" />
<meta name="description" content="" />
<meta name="copyright" content="Chronus Solutions" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<!-- Title -->
<title>Chronus Solutions - Your Projects' Professionals</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Poppins:200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap"
rel="stylesheet"
/>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" />
<!-- Nice Select CSS -->
<link rel="stylesheet" href="css/nice-select.css" />
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="css/font-awesome.min.css" />
<!-- icofont CSS -->
<link rel="stylesheet" href="css/icofont.css" />
<!-- Slicknav -->
<link rel="stylesheet" href="css/slicknav.min.css" />
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="css/owl-carousel.css" />
<!-- Datepicker CSS -->
<link rel="stylesheet" href="css/datepicker.css" />
<!-- Animate CSS -->
<link rel="stylesheet" href="css/animate.min.css" />
<!-- Magnific Popup CSS -->
<link rel="stylesheet" href="css/magnific-popup.css" />
<!-- CSS -->
<?php
// Compute site base folder (e.g., /chronuswebsite-main/) so assets resolve from subfolders
$script = $_SERVER['SCRIPT_NAME'] ?? '';
$parts = explode('/', trim($script, '/'));
$site_base = '/';
if (count($parts) >
1) { $site_base = '/' . $parts[0] . '/'; } ?>
<link
rel="stylesheet"
href="<?= htmlspecialchars($site_base) ?>css/normalize.css"
/>
<link
rel="stylesheet"
href="<?= htmlspecialchars($site_base) ?>style.css"
/>
<link
rel="stylesheet"
href="<?= htmlspecialchars($site_base) ?>css/responsive.css"
/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<link rel="stylesheet" href="<?= htmlspecialchars($site_base) ?>form.css" />
<script src="<?= htmlspecialchars($site_base) ?>form.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="is-preload">
<!-- Preloader -->
<div class="preloader">
<div class="loader">
<div class="loader-outter"></div>
<div class="loader-inner"></div>
<div class="indicator">
<svg width="24px" height="24px">
<polyline
id="back"
points="12,2 8,8 2,12 8,16 12,22 15,16 22,12 15,7 12,2"
></polyline>
<polyline
id="front"
points="12,2 8,8 2,12 8,16 12,22 15,16 22,12 15,7 12,2"
></polyline>
</svg>
</div>
</div>
</div>
<!-- End Preloader -->
<!-- Get Pro Button >
<ul class="pro-features">
<a class="get-pro" href="#">Let's Chat</a>
<!-li class="big-title">Pro Version Available on Themeforest</li>
<li class="title">A team member will join you shortly</li>
<li>All our representatives are currently engaged, a chat box will appear here once someone is available.</li>
<li>Thank you for waiting</li>
<!-li>Color Plate With 12+ Colors</li>
<li>Sticky Header / Sticky Filters</li>
<li>Working Contact Form With Google Map</li>
<div class="button">
<a href="contact/" target="_blank" class="btn">Join the Queue</a>
<a href="contact/" target="_blank" class="btn">Request a Callback</a>
</div>
</ul>
-->
<?php include 'inc/header.php'; ?>
</body>
</html>