-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (128 loc) · 7.72 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HasHTime</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-blue-400 overflow-x-hidden">
<div
class="navbar flex justify-around items-center w-screen h-[4rem] bg-white sm:flex-wrap sm:h-[18rem] lg:flex-wrap lg:h-[12rem]">
<div class="logo">
<h1 class="text-5xl h-[4rem] bg-blue-400 px-5 text-white font-semibold">HashTime</h1>
</div>
<div class="links">
<a href="#" class="ml-2">Home</a>
<a href="#" class="ml-2">AddProject</a>
<a href="#" class="ml-2">ControlProject</a>
<a href="#" class="ml-2">Dashboard</a>
<a href="#" class="ml-2">Contact</a>
<a href="#" class="ml-2">MyAccount</a>
</div>
<div class="search flex items-center">
<input type="search" placeholder="Search" class="p-3 border-2 rounded-sm border-neutral-600 mr-2">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-search"
viewBox="0 0 16 16">
<path
d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z" />
</svg>
</div>
<div class="Pro">
<h1 class="text-xl bg-yellow-500 px-4 py-2 rounded-lg cursor-pointer text-black font-bold">Update To Pro
</h1>
</div>
</div>
<main>
<div class="p-2 flex justify-center">
<div class="whitebox bg-white w-[95vw] h-[30rem] rounded-md p-3 mb-3 sm:h-[32rem]">
<h1 class="text-3xl">ProjectName: <span class="font-semibold">CostLess</span></h1>
<h1 class="text-2xl">ProjectManager: <span class="font-semibold">FSDev</span></h1>
<h1 class="text-xl">DeadLine: <span class="font-semibold">8-10-2022</span></h1>
<h1 class="text-xl">TeamMembers: <span class="font-semibold">Total 50 <a href='#'
class="text-blue-500">Full List</a></span></h1>
<h1 class="text-xl">PaymentStatus: <span class="font-semibold text-red-500">Pending</span></h1>
<h1 class="text-2xl font-bold">CodeWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-orange-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">88%</h1>
</div>
<h1 class="text-2xl font-bold">TestingWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-red-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">45%</h1>
</div>
<h1 class="text-2xl font-bold">ProgressBar: <span class="font-semibold"> 44% </span></h1>
<progress class="w-[90vw]" value="44" max="100"></progress>
</div>
</div>
<div class="p-2 flex justify-center">
<div class="whitebox bg-white w-[95vw] h-[30rem] rounded-md p-3 mb-3 sm:h-[32rem]">
<h1 class="text-3xl">ProjectName: <span class="font-semibold">Blow</span></h1>
<h1 class="text-2xl">ProjectManager: <span class="font-semibold">FSDev</span></h1>
<h1 class="text-xl">DeadLine: <span class="font-semibold">26-7-2022</span></h1>
<h1 class="text-xl">TeamMembers: <span class="font-semibold">Total 20 <a href='#'
class="text-blue-500">Full List</a></span></h1>
<h1 class="text-xl">PaymentStatus: <span class="font-semibold text-green-500">Paid</span></h1>
<h1 class="text-2xl font-bold">CodeWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-orange-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">77%</h1>
</div>
<h1 class="text-2xl font-bold">TestingWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-red-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">35%</h1>
</div>
<h1 class="text-2xl font-bold">ProgressBar: <span class="font-semibold"> 34% </span></h1>
<progress class="w-[90vw]" value="34" max="100"></progress>
</div>
</div>
<div class="p-2 flex justify-center">
<div class="whitebox bg-white w-[95vw] h-[30rem] rounded-md p-3 mb-3 sm:h-[32rem]">
<h1 class="text-3xl">ProjectName: <span class="font-semibold">GetFood-Application</span></h1>
<h1 class="text-2xl">ProjectManager: <span class="font-semibold">FSDev</span></h1>
<h1 class="text-xl">DeadLine: <span class="font-semibold">26-7-2022</span></h1>
<h1 class="text-xl">TeamMembers: <span class="font-semibold">Total 20 <a href='#'
class="text-blue-500">Full List</a></span></h1>
<h1 class="text-xl">PaymentStatus: <span class="font-semibold text-green-500">Paid</span></h1>
<h1 class="text-2xl font-bold">CodeWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-orange-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">90%</h1>
</div>
<h1 class="text-2xl font-bold">TestingWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-red-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">75%</h1>
</div>
<h1 class="text-2xl font-bold">ProgressBar: <span class="font-semibold"> 92% </span></h1>
<progress class="w-[90vw]" value="92" max="100"></progress>
</div>
</div>
<div class="p-2 flex justify-center">
<div class="whitebox bg-white w-[95vw] h-[30rem] rounded-md p-3 mb-3 sm:h-[32rem]">
<h1 class="text-3xl">ProjectName: <span class="font-semibold">HashTime</span></h1>
<h1 class="text-2xl">ProjectManager: <span class="font-semibold">FSDev</span></h1>
<h1 class="text-xl">DeadLine: <span class="font-semibold">26-7-2022</span></h1>
<h1 class="text-xl">TeamMembers: <span class="font-semibold">Total 1 <a href='#'
class="text-blue-500">Full List</a></span></h1>
<h1 class="text-xl">PaymentStatus: <span class="font-semibold text-green-500">Paid</span></h1>
<h1 class="text-2xl font-bold">CodeWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-orange-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">99.9%</h1>
</div>
<h1 class="text-2xl font-bold">TestingWork:</h1>
<div
class="circle w-[5rem] h-[5rem] border-2 border-red-500 rounded-full flex justify-center items-center">
<h1 class="text-xl font-semibold">92%</h1>
</div>
<h1 class="text-2xl font-bold">ProgressBar: <span class="font-semibold"> 99% </span></h1>
<progress class="w-[90vw]" value="99" max="100"></progress>
</div>
</div>
</main>
</body>
</html>