-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (36 loc) · 1.16 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width= device-width, initial-scale-1.0">
<title>SAMTECH LTD</title>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
</head>
<body>
<div class="navbar">
<a href="index.html">HOME</a>
<a href="about-us.html">ABOUT US</a>
<a href="projects.html">PROJECTS</a>
</div>
<section class="hero">
<div class="hero-overlay"></div>
<div class="hero-content fade-in continuous-move">
<h1>Welcome to SAMTECH</h1>
<p>Your Gateway to Innovative Technology Solutions</p>
<a href="#featured-products" class="btn">Featured Products</a>
</div>
</section>
<section class="contact">
<div class="container">
<h2>Contact Us</h2>
<p>Ready to start your next project with SAMTECH? Contact us today!</p>
<div class="contact-icons">
<i class="fa fa-envelope"> [email protected]</i>
<i class="fa fa-phone"> +254 745053923</i>
</div>
</div>
</section>
<script src="background.js"></script>
</body>
</html>