|
1 | 1 | # WebSite_HTML-CSS-JS-template |
2 | | -* My html write template files! |
3 | | -* And, I use to learn "Github Pages". |
| 2 | + |
| 3 | +# Japanese |
| 4 | +## 概要 |
| 5 | +このリポジトリは、個人的なHTML/CSS/JavaScriptのテンプレートです。GitHub Pagesの学習および静的サイトの雛形として利用することを目的としています。 |
| 6 | + |
| 7 | +(元のREADMEの内容を保持) |
| 8 | +- My html write template files! |
| 9 | +- And, I use to learn "Github Pages". |
| 10 | +## 使用技術 |
| 11 | +- 言語: HTML, CSS, JavaScript |
| 12 | +- ライブラリ/フレームワーク: なし(純粋な静的ファイル構成) |
| 13 | +- データベース: なし |
| 14 | +- その他: 画像は `images/` 配下に配置 |
| 15 | +## 使い方 |
| 16 | +### 前提条件 |
| 17 | +- 最新のウェブブラウザ(Chrome, Firefox, Edge等) |
| 18 | +- Gitを使用してクローンする場合は `git` が必要です(任意) |
| 19 | +### インストール方法 |
| 20 | +```bash |
| 21 | +git clone https://github.com/username/project.git |
| 22 | +cd project |
| 23 | +``` |
| 24 | +### 基本的な使い方 |
| 25 | +ローカルで確認するには、リポジトリ内の `index.html` をブラウザで開いてください。簡易的なローカルサーバを立てる場合は、例えばPythonを用いて次のコマンドで配信できます。 |
| 26 | +```bash |
| 27 | +python -m http.server 8000 |
| 28 | +# ブラウザで http://localhost:8000 を開く |
| 29 | +``` |
| 30 | +## 主な機能 |
| 31 | +- ヘッダー・フッターを備えたシンプルな静的テンプレート |
| 32 | +- レスポンシブを想定した最小限のスタイル(中央寄せのコンテンツ等) |
| 33 | +- 画像配置のサンプル(`images/dummy.jpg`) |
| 34 | +- 最小限のJavaScriptサンプル(`script.js`) |
| 35 | +## 設定 |
| 36 | +特別な環境変数や設定ファイルは不要です。デザインやコンテンツは `index.html`、スタイルは `style.css`、スクリプトは `script.js` を編集してください。 |
| 37 | +## ライセンス |
| 38 | +Unlicense license |
| 39 | + |
| 40 | +# English |
| 41 | +## Overview |
| 42 | +This repository is a personal HTML/CSS/JavaScript template intended as a starter for learning GitHub Pages and for creating simple static sites. |
| 43 | + |
| 44 | +(Original README content preserved) |
| 45 | +- My html write template files! |
| 46 | +- And, I use to learn "Github Pages". |
| 47 | +## Technologies |
| 48 | +- Language: HTML, CSS, JavaScript |
| 49 | +- Libraries/Frameworks: None (pure static files) |
| 50 | +- Database: None |
| 51 | +- Other: Images are stored under the `images/` directory |
| 52 | +## Usage |
| 53 | +### Prerequisites |
| 54 | +- A modern web browser (Chrome, Firefox, Edge, etc.) |
| 55 | +- `git` if you want to clone the repository (optional) |
| 56 | +### Installation |
| 57 | +```bash |
| 58 | +git clone https://github.com/username/project.git |
| 59 | +cd project |
| 60 | +``` |
| 61 | +### Basic Usage |
| 62 | +Open `index.html` in a browser to preview the site locally. To serve via a simple local server, you can use Python: |
| 63 | +```bash |
| 64 | +python -m http.server 8000 |
| 65 | +# then open http://localhost:8000 in your browser |
| 66 | +``` |
| 67 | +## Main Features |
| 68 | +- Simple static template with header and footer |
| 69 | +- Minimal styles for centered content |
| 70 | +- Sample image at `images/dummy.jpg` |
| 71 | +- Minimal JavaScript example in `script.js` |
| 72 | +## Configuration |
| 73 | +No special environment variables or configuration files are required. Edit `index.html`, `style.css`, and `script.js` to customize. |
| 74 | +## License |
| 75 | +This repository is released under the Unlicense; see the `LICENCE` file for details. |
0 commit comments