-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (82 loc) · 4.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EHR</title>
<link rel="stylesheet" href="input.css">
<link rel="icon" href="/img/EHR.png">
</head>
<body class="m-8 sm:m-14 bg-[#81D7F2] h-[100%] w-[100]">
<nav class="flex sm:mx-20 items-center justify-between mt-3">
<div class="order-first ">
<h3 class="font-bold text-4xl ml-0"><a href="#">EHR</a></h3>
</div>
<div class="order-2 cursor-pointer ">
<ul class="absolute md:flex inset-0 -translate-x-[26rem] bg-[#56ccf0] md:translate-x-0 md:bg-[#81D7F2] md:static md:gap-14 text-xl ">
<li class="hover:border-b-2 hover:border-blue-700 hover:text-blue-700 hover:font-medium"><a href="index.html">Home</a></li>
<li class="hover:border-b-2 hover:border-blue-700 hover:text-blue-700 hover:font-medium"><a href="doctor.html">Doctor</a></li>
<li class="hover:border-b-2 hover:border-blue-700 hover:text-blue-700 hover:font-medium"><a href="individual.html">Individual</a></li>
</ul>
</div>
<div class="min-[700px]:flex justify-evenly order-3 hidden min-[700px]:visible md:gap-5">
<button class="rounded-3xl px-4 py-1 hover:bg-[#0066FF] hover:text-white border-2 border-blue-700">Log in</button>
<button class="rounded-3xl px-4 py-1 text-white bg-[#0066FF] border-blue-700 hover:bg-blue-800">Sign up</button>
</div>
<div class="flex flex-col order-last cursor-pointer md:hidden ">
<div class="bg-black h-1 w-6 rounded-xl m-0.5 "></div>
<div class="bg-black h-1 w-6 rounded-xl m-0.5"></div>
<div class="bg-black h-1 w-6 rounded-xl m-0.5"></div>
</div>
</nav>
<main class="">
<div class="hero_section md:flex">
<div class="left">
<figure class="mt-9 pt-4 ">
<img class="h-56 w-auto md:w-[40rem] md:h-auto" src="img/EHR (1).png" alt="EHR" width="1500px" height="1000px">
</figure>
</div>
<div class="right mt-12 sm:translate-x-[4.3rem] md:text-right ">
<div class=" ">
<h3 class="font-extrabold mt-10 text-3xl sm:text-5xl ">Find & Search Your <br>
Patient's</span> <span class="text-blue-700">Previous <br> Record.</span></h3>
</div>
<div class="mt-9">
<p class="text-[1rem] sm:text-[1rem]">Unlock Global Healthcare Connectivity: Seamlessly Access<br> Patient Health Records Anytime, Anywhere.</p>
</div>
<div>
<button class="w-[45vw] md:w-60 h-11 mt-9 rounded-3xl px-3 py-1 md:p-0 text-white bg-[#0066FF] border-blue-700 hover:bg-blue-800">Doctor Registration</button>
</div>
</div>
</div>
</main>
<section id="Hero_bar">
<div class="bg-blue-700 w-[100%] h-[21rem] sm:h-[8rem] mt-14 rounded-3xl text-center p-5 sm:flex sm:p-16 justify-evenly sm:items-center " >
<div class="p-3">
<h3 class="font-bold italic text-3xl text-white">24/7</h3>
<p class="text-white text-sm">Onine Support</p>
</div>
<hr>
<div class="sm:h-16 sm:w-0.5 sm:bg-white"></div>
<div class="p-3">
<h3 class="font-bold italic text-3xl text-white">10k+</h3>
<p class="text-white text-sm">Dotor's Registered</p>
</div>
<hr>
<div class="sm:h-16 sm:w-0.5 sm:bg-white"></div>
<div class="p-3">
<h3 class="font-bold italic text-3xl text-white">1B+</h3>
<p class="text-white text-sm">Patient's Data</p>
</div>
<div class="p-3">
<div class="relative ">
<input class="rounded-3xl text-center border border-gray-300 focus:outline-none focus:border-indigo-500 py-2 px-4 block w-full appearance-none leading-normal" type="text" placeholder="Need Help?">
<button class="absolute right-0 top-0 mt-4 mr-3 ">
<img class="w-3 " src="/img/search-symbol.png" alt="">
</button>
</div>
</div>
</div>
</section>
</body>
</html>