my-python-proje/src/index.html
2025-06-04 13:52:14 +00:00

27 lines
550 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Qoding Project</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
h1 {
color: #333;
}
p {
font-size: 18px;
color: #666;
}
</style>
</head>
<body>
<h1>Hello World</h1>
<p>This is a Qoding template.</p>
</body>
</html>