-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (77 loc) · 1.9 KB
/
index.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Soccer Project</title>
<link rel="stylesheet" href="style.css">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #f9f9f9;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #0044cc;
color: white;
padding: 20px;
text-align: center;
font-size: 1.8em;
font-weight: bold;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
main {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 10px 0;
}
ul li a {
display: block;
padding: 10px 15px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
ul li a:hover {
background-color: #0056b3;
}
footer {
text-align: center;
margin-top: 20px;
padding: 10px;
background-color: #f4f4f4;
border-top: 1px solid #ddd;
}
</style>
</head>
<body>
<header>Soccer Project</header>
<main>
<h2>메뉴</h2>
<ul>
<li><a href="league.html">리그 삽입</a></li>
<li><a href="team.html">팀 삽입</a></li>
<li><a href="player.html">플레이어 삽입</a></li>
<li><a href="match.html">경기 정보 삽입</a></li>
<li><a href="match_detail.html">경기 세부 정보 삽입</a></li>
<li><a href="view_rankings.html">리그 순위 보기</a></li>
<li><a href="view_team_details.html">팀 정보 검색</a></li>
<li><a href="view_player_details.html">플레이어 정보 검색</a></li>
<li><a href="view_matches.html">경기 정보 보기</a></li>
</ul>
</main>
<footer>© 2024 Soccer Project</footer>
</body>
</html>