You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<div class="title">
|
|
<h3>30 Days Of JavaScript Challenge Leaderboard </h3>
|
|
</div>
|
|
<div class="form-wrapper">
|
|
<form id="form">
|
|
<div id="iputs">
|
|
<input type="text" id="input-first-name" placeholder="firs name">
|
|
<input type="text" id="input-lastname" placeholder="last name">
|
|
<input type="text" id="country" placeholder="country">
|
|
<input type="number" id="score" placeholder="score">
|
|
</div>
|
|
<button type="submit">Add Player</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="main" id="player-wrapper">
|
|
<!-- <ul>
|
|
<li>name </li>
|
|
<li>country</li>
|
|
<li>scor</li>
|
|
<div class="button-wrapper">
|
|
<button><i class="fa-solid fa-trash-can"></i></button>
|
|
<button><i class="fa-solid fa-plus">5</i></button>
|
|
<button><i class="fa-solid fa-minus">5</i></button>
|
|
</div>
|
|
</ul> -->
|
|
</div>
|
|
</div>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html> |