-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduel.html
31 lines (28 loc) · 896 Bytes
/
duel.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Duel</title>
</head>
<body>
<div>
<div class="headerDuel">Random duel picker</div>
</div>
<div class="menu" id="menu">
<div class="title"><h1>NAVIGATION</h1></div>
<div class="listMenu">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="duel.html">Duel</a></li>
<li><a href="skins.html">Skins</a></li>
<li><a href="team.html">Team</a></li>
</ul>
<div class="footerMenu">
<img src="photos/lg.png" alt="image" class="logo" />
<p class="footerText">Stray 2023</p>
</div>
</div>
<script src="script.js"></script>
<link rel="stylesheet" href="styles.css" />
</body>
</html>