Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>technowire</title>
<link rel="stylesheet" href="voorpagina.css">
<style>
body {
background-color: lightblue;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100vh;
}
nav {
background-color: #3498db;
color: #fff;
padding: 20px;
position: fixed;
height: 100%;
width: 200px;
top: 0;
right: 0;
box-shadow: -5px 0 5px -5px rgba(0, 0, 0, 0.5);
}
nav ul {
list-style-type: none;
padding: 0;
}
nav li {
margin-bottom: 10px;
}
a {
color: #fff;
text-decoration: none;
}
section.img,
img {
display: grid;
place-items: center;
border-radius: 40px;
margin-bottom: 30px;
margin-top: 10px;
}
.active {
color: rgb(47, 0, 255);
}
main {
margin-right: 220px; /* Zorg ervoor dat de inhoud niet onder de navigatiebalk gaat */
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<section class="imga">
<img src="/technowire/TechnoWire _banner.png" alt="">
</section>
<header>
<nav id="main-nav">
<ul>
<li><a class="active" href="/technowire/index.html">Home</a></li>
<li><a href="/technowire/hall-of-fame.html">Hall-of-fame</a></li>
<li><a href="/technowire/programmeertalen.html">Programming languages</a></li>
<li><a href="/technowire/silicon valley.html">Silicon valley</a></li>
</ul>
</nav>
</header>
<input type="checkbox" id="ham-menu">
<label for="ham-menu">
<div class="hide-des">
<span class="menu-line"></span>
<span class="menu-line"></span>
<span class="menu-line"></span>
<span class="menu-line"></span>
<span class="menu-line"></span>
<span class="menu-line"></span>
</div>
</label>
<div class="full-page-green"></div>
<div class="ham-menu">
<ul class="centre-text bold-text">
<li><a class="active" href="/technowire/index.html">Home</a></li>
<li><a href="/technowire/hall-of-fame.html">Hall-of-fame</a></li>
<li><a href="/technowire/programmeertalen.html">Programming languages</a></li>
<li><a href="/technowire/silicon valley.html">Silicon valley</a></li>
</ul>
</div>
<main>
<section class="homee">
<h1>Welcome to TechnoWire</h1>
<br>
<p>TechnoWire is a young and dynamic company with a passion for everything related to IT. TechnoWire aims to transfer IT knowledge in an accessible manner to young adults, particularly those without a background in ICT. All information is presented in one place instead of having to scour the entire internet.</p>
<p>TechnoWire stands as a beacon of innovation in the vast landscape of technology. As a forward-thinking company, TechnoWire is not merely a player in the tech industry; it is a dynamic force propelling the boundaries of what's possible in the digital era. At the core of TechnoWire's identity is a visionary approach that embraces emerging technologies and anticipates the needs of tomorrow. The company's leadership is committed to navigating the ever-evolving tech landscape, ensuring that TechnoWire remains at the forefront of technological advancements.</p>
<p>TechnoWire is not content with the status quo; it is an innovator. The company specializes in crafting solutions that go beyond the expected, leveraging cutting-edge technologies such as Artificial Intelligence, IoT, and Blockchain. By pushing the envelope of innovation, TechnoWire empowers businesses to thrive in the digital age.</p>
</section>
</main>
<footer>
<!-- footer content here -->
</footer>
<script>
function toggleMenu() {
var nav = document.getElementById("main-nav");
nav.classList.toggle("show");
}
</script>
</body>
</html>