-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathlanding_page.html
43 lines (43 loc) · 1.54 KB
/
landing_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PrescribePlus</title>
<link rel="stylesheet" href="CSS/landing_page.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<div class="heading">
<h1>PRESCRIBE PLUS</h1>
</div>
<div class="box">
<div class="inner-box1">
<h2>We Provide</h2>
</div>
<div class="inner-box2">
<h3>Reports</h3>
<h2>Medicines</h2>
<h3>Prescriptions</h3>
</div>
</div>
<div class="icons">
<div class="instagram">
<i class="fa-brands fa-instagram"></i>
</div>
<div class="facebook">
<i class="fa-brands fa-facebook"></i>
</div>
<div class="twitter">
<i class="fa-brands fa-x-twitter"></i>
</div>
</div>
<div class="buttons">
<button class="doctor">Doctor's Sign Up</button>
<button class="patient">Patient Sign Up</button>
</div>
</div>
<script src="JS/landing-page.js"></script>
</body>
</html>