-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
40 lines (37 loc) · 1.31 KB
/
index.php
File metadata and controls
40 lines (37 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TechTrendz - Leading Technology Insights</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include('header.php'); ?>
<section class="hero">
<div class="hero-content">
<h1>Welcome to TechTrendz</h1>
<p>Your ultimate source for the latest in technology, gadgets, and software.</p>
<a href="about.php" class="btn btn-primary">Learn More</a>
</div>
</section>
<section class="features">
<h2>Why Choose Us?</h2>
<div class="feature-container">
<div class="feature">
<h3>Innovative Solutions</h3>
<p>We provide cutting-edge tech solutions to keep you ahead of the curve.</p>
</div>
<div class="feature">
<h3>Expert Reviews</h3>
<p>Our detailed product reviews help you make informed decisions.</p>
</div>
<div class="feature">
<h3>Latest News</h3>
<p>Stay updated with the latest trends and news in the technology world.</p>
</div>
</div>
</section>
<?php include('footer.php'); ?>
</body>
</html>