-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 2.34 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Responsive Header</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html"><img src="https://i.ibb.co/qRb36HD/PEM-TECH-SOLUTION-logo.png" alt="PEM-TECH-SOLUTION-logo" width="50" height="50"></a>
</div>
<ul class="nav-menu">
<li><a href="index.html">Home Page</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="pricelist.html">Price List</a></li>
<li><a href="offer.html">Offer</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="menu-icon">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<section class="hero">
<img src="https://i.ibb.co/BHwh8Xkc/Matrix-movie-still.webp" alt="Matrix-movie-still" class="hero-image">
<div class="hero-content">
<h1>Tech Empowerment</h1>
<p>PEMTech Solutions empowers individuals and businesses with cutting-edge technology and expert website development services, bridging the gap between innovation and everyday users, ensuring success in today’s tech-driven world. Your partner in progress.</p>
<button class="contact-btn">Contact</button>
</div>
</section>
<section class="about-highlight">
<div class="about-content">
<h2>About Us</h2>
<p>At PEMTech Solutions, we bridge the gap between cutting-edge technology and everyday users. Founded with a passion for innovation, we provide high-tech equipment, IT devices, and website development services. Our skilled team is dedicated to empowering individuals and businesses, ensuring they succeed in a tech-driven world through tailored solutions and exceptional support.</p>
<button class="more-btn">More</button>
</div>
<div class="about-image">
<img src="https://i.ibb.co/Y46RjvNX/Pem-Tech-about-section-image.webp" alt="Pem-Tech-about-section-image">
</div>
</section>
<script src="script.js"></script>
</body>
</html>