-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
39 lines (36 loc) · 1.22 KB
/
about.php
File metadata and controls
39 lines (36 loc) · 1.22 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
<!-- about.php -->
<?php include('functions.php'); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Technology Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include('header.php'); ?>
<div class="about_banner">
<div>
<h1>About Us</h1>
<i>
<a href="/taskserverside">Home</a> / About Us
</i>
</div>
</div>
<div class="about-wrapper">
<div class="about-text">
<h1>Welcome to TechTrendz</h1>
<h2>Who We Are</h2>
<p>
TechTrendz is a leading technology news platform providing the latest insights on tech innovations, software developments, and gadget reviews. We are dedicated to offering comprehensive and in-depth analysis for tech enthusiasts and professionals.
</p>
<a href="contact.php" class="contact-link">Contact Us</a>
</div>
<div class="about-image">
<img src="./images/about-tech.png" alt="Our Team at Work">
</div>
</div>
<?php include('footer.php'); ?>
</body>
</html>