Spaces:
Running
Running
File size: 1,684 Bytes
be4bed5 |
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 51 52 53 54 55 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ok Softwares And Web Development</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container" id="container">
<nav class="navbar">
<div class="burger">☰</div>
<ul class="nav-links">
<li><a onclick="home()">Home</a></li>
<li><a onclick="hosting()">Hosting Services</a></li>
<li><a onclick="chatbots()">Chatbots</a></li>
<li><a onclick="systems()">Systems</a></li>
<li><a onclick="softwares()">Softwares</a></li>
<li><a onclick="contact()">Contact</a></li>
</ul>
</nav>
<div class="main-content" id="main-content">
<section id="home" class="intro-section">
<div class="searchie">
<input type="search" name="search" id="search" placeholder="Search projects...">
<button type="button" id="btn-search" onclick="searchh()"> 🔍 </button>
</div>
<h1>Welcome</h1><h1>to</h1><h1>OK Softwares & Web Development</h1>
</section>
<footer class="footer">
<p>© 2024 OK Softwares & Web Development. All Rights Reserved.</p>
</footer>
</div>
</div>
<div class="chatbot-bubble">
<p class="pup" id="pup">Need assistance?</p>
<img src="assets/shrug.png" alt="Chatbot">
</div>
<div class="chatbot-window">
<button class="chatbot-close">Close</button>
<iframe src="bot/index.html" frameborder="0"></iframe>
</div>
<script src="scripts.js"></script>
<script src="content.js"></script>
</body>
</html>
|