-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhyif.php
90 lines (76 loc) · 3.34 KB
/
whyif.php
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
<?php
// Include the header file
include 'header.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Why Invisible Fence</title>
<?php include 'styles.php' ?>
</head>
<body>
<!-- Main Content Area -->
<div id="main-content" class="content-container">
<!-- Introduction -->
<h1 id="hero-tagline">We use Invisible Fence<sup>®</sup>Brand <u>exclusively</u> for your pets because we trust them for ours.</h1>
<br>
<!-- Key Features and Benefits -->
<section id="key-features" class="reg">
<h3>Key Features and Benefits</h3>
<ul>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.customizableContainmentZones"></li>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.durableCollars"></li>
</ul><br>
<h2>Professional Installation and Training:</h2><br>
<ul>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.professionalInstallationAndTraining.installation"></li>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.professionalInstallationAndTraining.postInstallationTraining"></li>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.customerSupport"></li>
</ul><br>
<h2>Safety Features:</h2><br>
<ul>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.safetyFeatures.failSafeMechanisms"></li>
<li data-content="whyInvisibleFence.keyFeaturesAndBenefits.safetyFeatures.adjustableCorrectionLevels"></li>
</ul>
</section><br>
<!-- Comparison with Alternatives -->
<section id="comparison" class="reg">
<h3>Comparison with Alternatives</h3>
<ul>
<li data-content="whyInvisibleFence.comparisonWithAlternatives.lowerMaintenanceCosts"></li>
<li data-content="whyInvisibleFence.comparisonWithAlternatives.lessIntrusiveDesign"></li>
<li data-content="whyInvisibleFence.comparisonWithAlternatives.enhancedSafety"></li>
</ul>
<br>
</section><br>
<!-- Customer Success Stories -->
<section id="customer-success-stories" class="reg">
<h3>Customer Success Stories</h3>
<div data-content="whyInvisibleFence.customerSuccessStories">
<!-- Success stories will be dynamically loaded here -->
</div><br>
</section><br>
<!-- Technology Innovations -->
<section id="technology-innovations" class="reg">
<h2>Technology Innovations</h2>
<ul data-content="whyInvisibleFence.technologyInnovations">
<!-- Items will be dynamically rendered here -->
</ul>
<br>
</section><br>
<!-- Direct Link to Invisible Fence -->
<section id="direct-link" class="reg"><br>
<a href="" class="cta-button" data-content="whyInvisibleFence.directLink.url">
<span data-content="whyInvisibleFence.directLink.text"></span>
</a><br>
</section><br>
</div>
<script src="dynamic-content.js"></script>
</body>
</html>
<?php
// Include the footer file
include 'footer.php';
?>