-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
50 lines (46 loc) · 2.5 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dallas Mavericks</title>
<link rel="stylesheet" href="./home.css">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="header-container">
<img src="https://i.namu.wiki/i/bVqGfTpxQbFDnruTqwy0CEyfexNHV3xpRelwvfcg0Uq853Lln9yquFpKwvV206y2SgTzCGvPcfvhDkecpHpiAQ.svg" alt="Mavericks" class="logo">
<h1>Dallas Mavericks</h1>
</div>
<nav>
<a href="Kyrie.html" class="player">Kyrie</a>
<a href="luka.html" class="player">Luka</a>
</nav>
</header>
<main>
<div class="description-container">
<img src="https://i.namu.wiki/i/hgYT862dpafEhk5SO7A6JW1Cfr0wqSaulGN4IbHK8oW3HiLe2BFqrYJvOxUtr5-UlzhY992vlAY_6KFmbedqwQ.svg" alt="Mavericks Logo" class="description-logo">
<div class="description">
<h2>About Mavericks</h2>
<p><span>"댈러스 매버릭스"</span>는 미국 텍사스주 댈러스를 연고지로 하는 NBA 서부 콘퍼런스 사우스웨스트 디비전 소속 프로 농구 팀이다. 프랜차이즈 스타인 디르크 노비츠키를 중심으로 2006-07 시즌 NBA 서부 콘퍼런스 우승을 차지했다. 2010-11 시즌 첫 NBA 챔피언에 등극했다.</p>
</div>
</div>
<div class="image-container">
<img src="https://www.hmap.co.kr/upload/editor/1612618262_gmq_Mavericks1.jpg" class="team">
<ul>
<li>
<h2>Key Players</h2>
<p><span>"루카 돈치치"</span> 댈러스의 핵심 선수로, NBA의 엘리트 플레이어 중 한 명입니다. <br>
더 자세히 알고 싶으시다면 위 Luka를 클릭해보세요!!</p>
<p><span>"카이리 어빙"</span> 루카의 든든한 파트너로, 뛰어난 득점 능력과 코트 비전을 자랑합니다. <br>
더 자세히 알고 싶으시다면 위 Kyrie를 클릭해보세요!!</p>
<h2>Other Players</h2>
<p><span>"데릭 라이블리 2세"</span> 루키 센터로, 댈러스의 페인트존 방어를 책임지는 중요한 역할을 맡고 있습니다.</p>
<p><span>"조쉬 그린"</span> 팀의 젊은 핵심 멤버 중 하나로, 그의 운동 능력과 다재다능함은 양방향 플레이에서 큰 기여를 하고 있습니다.</p>
</li>
</ul>
</div>
</main>
</body>
</html>