Files
AloeGames-Site/html/index.html
T
2026-05-23 19:41:58 +03:00

71 lines
2.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AloeGames</title>
<link rel="icon" href="images/favicon.ico">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="bgCanvas"></canvas>
<header>
<div class="header-left">
<div class="logo">
AloeGames
</div>
</div>
<div class="lang-switch" onclick="toggleLang()">RU / EN</div>
</header>
<section class="hero">
<img src="images/logo.png" height="300">
<h1 id="title">We Build Worlds</h1>
<p id="desc">AloeGames is a modern game development studio focused on creating immersive, next-generation
experiences.</p>
<form class="search-form" onsubmit="searchQuery(event)">
<select id="searchEngine" class="search-engine" aria-label="Select search engine">
<option value="google">Google</option>
<option value="duckduckgo">DuckDuckGo</option>
<option value="perplexity">Perplexity</option>
</select>
<input id="searchInput" type="search" placeholder="Search the web..." aria-label="Search query">
<button class="btn search-btn" type="submit">Search</button>
</form>
</section>
<section>
<h2 id="aboutTitle">About Us</h2>
<p id="aboutText">We are a team of passionate developers, designers, and dreamers. Our mission is to push the
boundaries of interactive entertainment and deliver unforgettable gaming experiences.</p>
</section>
<!--<section>
<h2 id="projectsTitle">Our Projects</h2>
<div class="grid">
<div class="card"><h3>Project One</h3><p>Next-gen action experience with stunning visuals.</p></div>
<div class="card"><h3>Project Two</h3><p>Multiplayer world with deep progression systems.</p></div>
<div class="card"><h3>Project Three</h3><p>Story-driven adventure with emotional narrative.</p></div>
</div>
</section>
<section>
<h2 id="contactTitle">Contact</h2>
<p id="contactText">Get in touch with us for partnerships, collaborations, or just to say hello.</p>
</section>-->
<footer>
© 2026 AloeGames. All rights reserved.
</footer>
<script src="js/app.js"></script>
</body>
</html>