Initial commit

This commit is contained in:
wsc-admin
2026-04-02 19:35:57 +09:00
commit f7e4f1404e
5 changed files with 29 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.DS_Store

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# Vanilla JS App
Static files only. No Docker, no build step, no CI/CD.

14
index.html Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vanilla JS App</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Hello Vanilla JS!</h1>
<p>Edit files directly. No build step required.</p>
<script src="main.js"></script>
</body>
</html>

1
main.js Normal file
View File

@@ -0,0 +1 @@
console.log('Hello from Vanilla JS App!')

10
style.css Normal file
View File

@@ -0,0 +1,10 @@
body {
font-family: system-ui, sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
h1 { color: #333; }