forked from hideo54/sig-beginners-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
21 lines (21 loc) · 684 Bytes
/
hello.html
File metadata and controls
21 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hello</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<h1>Hello, World!</h1>
<p id="start">Edit this file to get started!</p>
<p>
Current time:
<span id="clock"></span>
</p>
<h2>What is "TSG LIVE!"?</h2>
<img src="https://live.tsg.ne.jp/icons/icon-512x512.png" width="100%" />
<p>TSG LIVE! とは、祭りです。来月やります。</p>
<script src="main.js"></script>
</body>
</html>