Initial commit: существующий сайт + конфигурация разработки
Some checks failed
Deploy to Production / deploy (push) Failing after 4s

This commit is contained in:
2026-01-10 22:23:00 +03:00
parent 28b50d28c1
commit 5b11e61c8e
16 changed files with 1339 additions and 0 deletions

25
html/start.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Title</title>
<!-- Link to an external CSS file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome</h1>
</header>
<main>
<p>This is the main content of the page.</p>
</main>
<footer>
<p>&copy; 2026 My Website</p>
</footer>
<!-- Link to an external JavaScript file -->
<script src="script.js"></script>
</body>
</html>