Skip to content
Open

Jo #2

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.app-title {
color: #ff0000;
color: #ff0001;
}
6 changes: 3 additions & 3 deletions template.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
<html lang="ja">
<head>
<meta charset="utf-8" />
<title>チャット</title>
<title>Chat</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<h1 class="app-title">チャット</h1>
<h1 class="app-title">Chat</h1>
<ul>
<!-- posts -->
</ul>
<form action="/send" method="post">
<input id="message-input" type="text" name="message" />
<button type="submit">送信</button>
<button type="submit">send</button>
</form>
<script src="/script.js"></script>
</body>
Expand Down