-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathleague.html
More file actions
35 lines (29 loc) · 849 Bytes
/
Copy pathleague.html
File metadata and controls
35 lines (29 loc) · 849 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
34
35
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WinWin - Liga Portugal</title>
<link rel="stylesheet" href="css/theme.css" />
<link rel="stylesheet" href="css/structure.css" />
</head>
<body>
<header class="app-header">
<a href="index.html" class="back-link">‹ Voltar</a>
<h2>Liga Portugal</h2>
</header>
<main class="match-screen">
<div class="match">
<img src="assets/benfica.png" alt="SL Benfica" class="team-logo" />
<span class="vs">X</span>
<img src="assets/porto.png" alt="FC Porto" class="team-logo" />
</div>
</main>
<footer class="navbar">
<div class="icon">🎰</div>
<div class="icon active">🏠</div>
<div class="icon">👤</div>
</footer>
<script src="js/behaviour.js"></script>
</body>
</html>