-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (32 loc) · 831 Bytes
/
index.html
File metadata and controls
33 lines (32 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<html>
<head>
<meta charset="utf-8">
<title>SW-Runner</title>
<!-- 폰트는 구글 폰트에서 따와서 변경하면 될듯 https://fonts.google.com-->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,800&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
<style>
body{
background-image: url("/res/background.png");
background-size: cover;
}
</style>
</head>
<body>
<div class="panel">
<br>
<h1>
<span class="title">SW-Runner</span>
</h1>
<br>
<br>
<h2>
<span class="byline">Welcome to our game!</span>
</h2>
<br><br>
<p>
<a href="res/game.html">Play Game</a>
</p>
</div>
</body>
</html>