Relocate index.html and style.css to an under-construction subfolder to better organize the project structure. Update HTML to reference CSS with new relative path. This prepares for future site development while keeping current under-construction version intact.
23 lines
737 B
HTML
23 lines
737 B
HTML
<!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>
|