Move site files to under-construction directory
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.
This commit is contained in:
22
under-construction/index.html
Normal file
22
under-construction/index.html
Normal 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>
|
||||
Reference in New Issue
Block a user