feat: Create initial web page with HTML, CSS, and JavaScript for dynamic greeting color.

This commit is contained in:
almazlar
2026-02-07 19:31:24 +03:00
parent 4ade568a7e
commit 4b280514c4
3 changed files with 59 additions and 0 deletions

20
index.html Normal file
View File

@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>almazlar.com | Hoş Geldiniz</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 id="greeting">Yayında!</h1>
<p>Docker ile servis ediliyor.</p>
<button onclick="changeColor()">Rengi Değiştir</button>
</div>
<script src="script.js"></script>
</body>
</html>