-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHomepage.html
More file actions
129 lines (121 loc) · 4.2 KB
/
Copy pathHomepage.html
File metadata and controls
129 lines (121 loc) · 4.2 KB
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
<html>
<head>
<title>Home Page</title>
<link rel="stylesheet" href="./../css/style.css" />
<!-- Latest compiled and minified CSS -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u"
crossorigin="anonymous"
/>
<!-- Optional theme -->
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css?family=Montserrat|Raleway"
rel="stylesheet"
/>
<!-- Latest compiled and minified JavaScript -->
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="parallax_loader " id="home">
<div class="container-fluid bg-overlay">
<div class="main_head">
<h1 class="display-1" style="text-align:center; font-size: 8rem;">
Ecommerce Database
</h1>
</div>
<div class="container-fluid text-head">
<h1
class="display-1 g-color--white"
style="text-align:center;font-size: 2.5em; color: white"
>
This is a basic E-Commerce website management system...
</h1>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-md-3">
<h1 class="display-2">
<a href="customer/customer_HomePage.html">CUSTOMER</a>
</h1>
</div>
<div class="col-md-3">
<h1 class="display-2">
<a href="suppliers/supplier_HomePage.html">SUPPLIER</a>
</h1>
</div>
<div class="col-md-3">
<h1 class="display-2">
<a href="product/product_HomePage.html">PRODUCTS</a>
</h1>
</div>
<div class="col-md-3">
<h1 class="display-2"><a href="#">ORDERS</a></h1>
</div>
</div>
</div>
</div>
</div>
<!-- <center>
<h2><a href="select/select.html">Select</a></h2>
<h2><a href="update/update.html">Update</a></h2>
<h2><a href="delete/delete.html">Delete</a></h2>
</center>
<div class="dropdown" id="first">
<p id="hvr-float-shadow" href="#0">
<img src="image/patient.png" height="150" />
</p>
<div class="dropdown-content">
<p id="heading">Patients</p>
<a href="insert/patient_insert.html">Insert</a>
</div>
</div>
<div class="dropdown">
<p id="hvr-float-shadow" href="#0">
<img src="image/doctor.png" height="150" />
</p>
<div class="dropdown-content">
<p id="heading">Doctors</p>
<a href="insert/doctor_insert.html">Insert</a>
</div>
</div>
<div class="dropdown">
<p id="hvr-float-shadow" href="#0">
<img src="image/assistant.png" height="150" />
</p>
<div class="dropdown-content">
<p id="heading">Staff</p>
<a href="insert/staff_insert.html">Insert</a>
</div>
</div>
<div class="dropdown">
<p id="hvr-float-shadow" href="#0">
<img src="image/medicine.png" height="150" />
</p>
<div class="dropdown-content">
<p id="heading">Medicine</p>
<a href="insert/medicine_insert.html">Insert</a>
</div>
</div>
<div class="dropdown">
<p id="hvr-float-shadow" href="#0">
<img src="image/room.png" height="150" />
</p>
<div class="dropdown-content">
<p id="heading">Medical Rooms</p>
<a href="insert/room_insert.html">Insert</a>
</div>
</div> -->
</body>
</html>