Add initial HTML and CSS files for project setup

Create basic project structure with index.html and style.css
to serve as foundation for website development.
This commit is contained in:
2025-06-28 14:32:38 +07:00
commit 6d9ecb7196
2 changed files with 81 additions and 0 deletions

22
index.html Normal file
View File

@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kediri Technopark - Coming Soon</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="content">
<h1>KEDIRI TECHNOPARK</h1>
<p>Our website is under construction</p>
<div class="progress-bar">
<div class="progress"></div>
</div>
<p class="contact">Contact us: info@kediritechnopark.com</p>
</div>
</div>
</body>
</html>