Fichiers
ariadigitalmachines/service-9.html
T
2024-12-18 10:02:22 +05:30

231 lignes
7.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RF Technology</title>
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<style>
body {
background-color: #ffffff;
color: #333333;
font-family: 'Arial', sans-serif;
}
.header-section {
text-align: center;
padding: 60px 20px;
background-color: #f8f9fa;
}
.header-section h1 {
font-size: 2.5rem;
color: #0056b3;
font-weight: bold;
}
.header-section p {
font-size: 1rem;
color: #666666;
margin-top: 20px;
}
.section-title {
color: #0056b3;
font-size: 2rem;
font-weight: bold;
margin-bottom: 30px;
text-align: center;
}
.divider {
width: 60px;
height: 4px;
background-color: #0056b3;
margin: 0 auto 30px;
}
.feature-box {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background-color: #f8f9fa;
border-radius: 8px;
transition: 0.3s;
}
.feature-box:hover {
background-color: #e9ecef;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.feature-box img {
width: 50px;
margin-bottom: 15px;
}
.feature-box h4 {
font-size: 1.25rem;
color: #333333;
margin-bottom: 10px;
}
.feature-box p {
font-size: 0.9rem;
color: #666666;
text-align: center;
}
.cta-section {
text-align: center;
padding: 40px 20px;
}
.btn-primary {
background-color: #0056b3;
border-color: #0056b3;
padding: 12px 25px;
font-size: 1.1rem;
transition: all 0.3s ease-in-out;
}
.btn-primary:hover {
background-color: #003f88;
border-color: #003f88;
}
.image-section img {
max-width: 100%;
border-radius: 10px;
}
.list-section ul {
list-style: none;
padding: 0;
}
.list-section ul li {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.list-section ul li .icon {
color: #0056b3;
margin-right: 10px;
font-size: 1.2rem;
}
</style>
</head>
<body>
<header id="header" class="header d-flex align-items-center fixed-top">
</header>
<!-- Header Section -->
<div class="header-section">
<h1>Introduction to RF Technology</h1>
<p>Discover the core of modern wireless communication systems through RF technology, enabling seamless
transmission and reception of data, voice, and multimedia.</p>
</div>
<!-- Key Components Section -->
<div class="container py-5">
<h2 class="section-title">Key Components of RF Technology</h2>
<div class="divider"></div>
<div class="row g-4">
<div class="col-md-4">
<div class="feature-box">
<img src="icon-rf-chip.png" alt="RF Chip">
<h4>RF Chips</h4>
<p>Miniaturized circuits that power wireless communication in modern devices.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<img src="icon-rf-sensor.png" alt="RF Sensor">
<h4>RF Sensors</h4>
<p>Devices that detect and measure physical properties using RF signals.</p>
</div>
</div>
<div class="col-md-4">
<div class="feature-box">
<img src="icon-rf-scanner.png" alt="RF Scanner">
<h4>RF Scanners</h4>
<p>Tools designed to read RFID tags and gather information wirelessly.</p>
</div>
</div>
</div>
</div>
<!-- Applications Section -->
<div class="container py-5">
<h2 class="section-title">Applications of RF Technology</h2>
<div class="divider"></div>
<div class="row align-items-center">
<div class="col-md-6 image-section">
<img src="rf-applications.png" alt="Applications of RF Technology">
</div>
<div class="col-md-6 list-section">
<ul>
<li>
<span class="icon">✔️</span>
<span><strong>Radar Systems:</strong> Backbone for navigation, surveillance, and aviation
applications.</span>
</li>
<li>
<span class="icon">✔️</span>
<span><strong>IoT Ecosystems:</strong> Seamless connectivity for smart devices and data
flow.</span>
</li>
<li>
<span class="icon">✔️</span>
<span><strong>Satellite Communications:</strong> RF amplifiers and filters enable global data
exchange.</span>
</li>
<li>
<span class="icon">✔️</span>
<span><strong>Industrial Applications:</strong> Enhances medical imaging and industrial
automation processes.</span>
</li>
</ul>
</div>
</div>
</div>
<!-- Call to Action Section -->
<div class="cta-section">
<h2 class="section-title">Learn More About RF Technology</h2>
<p>Discover the latest advancements and solutions in RF systems. Stay ahead in wireless communication
technology.</p>
<button class="btn btn-primary">Explore Now</button>
</div>
<footer id="footer" class="footer">
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
<!-- header and footer js files -->
<script src="assets/js/navbar.js"></script>
<script src="assets/js/footer.js"></script>
</body>
</html>