-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 869 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Invenio Technology Inc</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="https://github.com/Dextorslab/Invenio/blob/main/Logo.png" alt="Invenio Technology Inc Logo">
<h1>Invenio Technology Inc</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<button onclick="toggleDarkMode()">Dark Mode</button>
</header>
<main>
<section id="about">
<h2>About Us</h2>
<img src="https://www.example.com/images/about.jpg" alt="About Image">
<p>Leading edge logistics, procurement, and invoicing solutions. We specialize in visibility and automation.</p>
<a href="contact.html"><button>Contact Us</button></a>
</section>
</main>
<script src="script.js"></script>
</body>
</html>