-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
76 lines (70 loc) · 3.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>foot</title>
<link href="css/output.css" type="text/css" rel="stylesheet">
</head>
<header class="flex justify-center bg-[#559f41]">
<div class="">
<div class="">
<img class="w-50 md:w-60 lg:w-70" class="logo" src="css/cover.png" alt="">
</div>
</div>
</header>
<body class="">
<div class="hero min-h-screen bg-[url('main.jpg')]">
<div class="hero-content flex-col lg:flex-row">
<div class="flex justify-center p-20">
<input type="text" name="player" class="border-2 border-green-600 pr-10" autocomplete="off">
<button id="search" class="btn bg-[#f1cc07]">Search</button>
</div>
<div class="card w-96 bg-[#CCE2A3] shadow-xl">
<figure class="px-10 pt-10">
<img id="playerImage" src="https://images.pexels.com/photos/3886235/pexels-photo-3886235.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1" alt="player" class="rounded-xl" />
</figure>
<div class="card-body items-center text-center">
<h2 id="playerName" class="card-title">Name</h2>
<div class="flow-root rounded-lg border border-gray-100 py-3 shadow-sm">
<dl class="-my-3 divide-y divide-gray-100 text-sm">
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Nationality</dt>
<dd id="playerNation" class="text-gray-700 sm:col-span-2"></dd>
</div>
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Birth Date</dt>
<dd id="birthDate" class="text-gray-700 sm:col-span-2"></dd>
</div>
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Club</dt>
<dd id="team" class="text-gray-700 sm:col-span-2"></dd>
</div>
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Position</dt>
<dd id="position" class="text-gray-700 sm:col-span-2"></dd>
</div>
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Prefered Foot</dt>
<dd id="foot" class="text-gray-700 sm:col-span-2"></dd>
</div>
<div class="grid grid-cols-1 gap-1 p-3 sm:grid-cols-3 sm:gap-4">
<dt class="font-medium text-gray-900">Number</dt>
<dd id="jersey" class="text-gray-700 sm:col-span-2"></dd>
</div>
</dl>
</div>
</div>
</div>
</div>
</div>
<script src="js/main.js"></script>
<script src="https://kit.fontawesome.com/c15b095f83.js" crossorigin="anonymous"></script>
</body>
<footer class="footer footer-center p-4 bg-[#559f41] text-base-content">
<div>
<p>Copyright © 2023 - All right reserved</p>
</div>
</footer>
</html>