-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (44 loc) · 1.66 KB
/
index.html
File metadata and controls
60 lines (44 loc) · 1.66 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Landing Page</title>
<link rel="stylesheet" href="css/global_styles.css">
<link rel="stylesheet" href="assets/fa/css/all.min.css">
</head>
<!-- TEMPLATE URL: https://html.kodesolution.com/2025/consultez-html-v2/index.html -->
<body>
<!-- Header -->
<section id="header_section"></section>
<section id="hero_section"></section>
<!-- About Section -->
<section id="about_section"></section>
<!-- Service Area Section -->
<section id="service_area_section"></section>
<!-- Mission & Vision Section -->
<section id="mission_vision_section"></section>
<!-- Growth Rate Section -->
<section id="growth_section"></section>
<!-- How it Works Section -->
<section id="how_it_works_section"></section>
<!-- Case Study Section -->
<section id="case_study_section"></section>
<!-- Business Strategy Section -->
<section id="business_strategy_section"></section>
<!-- Main Content -->
<main style="min-height: 80vh;">
<h1>Welcome to the Landing Page</h1>
<p>This is the home page of our website.</p>
</main>
<div>
<div class="circular-progress" style="--width:100px; --percentage:75%; --progress-width:10px; --progress-color:var(--secondary-color)">
<span style="--progress-font-weight:bold; --progress-font-size:1.2rem">75%</span>
</div>
</div>
<!-- Footer -->
<section id="footer_section"></section>
<!-- JavaScripts Go Here -->
<script src="js/includes.js"></script>
</body>
</html>