-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (88 loc) · 3.2 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
<!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>Dairy Farm</title>
</head>
<body>
<title>Diary Project</title>
<link rel="stylesheet" href="./assets/index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp">
</head>
<body>
<!--side-bar-->
<div class="container">
<aside>
<div class="top">
<div id="logo">
<h1>Milk Fresh</h1>
</div>
<div class="close-btn">
<div id="btn1">
<span class="material-icons-sharp">close</span>
</div>
</div>
</div>
<div class="side-bar">
<a href="#">
<span class="material-icons-sharp">person_outline</span>
<h3>Customers</h3></a>
<a href="#">
<span class="material-icons-sharp">receipt</span>
<h3>Orders</h3>
</a>
<a href="#">
<span class="material-icons-sharp"> stacked_bar_chart</span>
<h3>Sales</h3>
</a>
<a href="#">
<span class="material-icons-sharp">inventory</span>
<h3>Production</h3>
</a>
<a href="#">
<span class="material-icons-sharp">logout</span>
<h3>Logout</h3>
</a>
</div>
</aside>
<!--main-section-->
<main>
<h2>Dashboard</h2>
<div class="date">
<input type="date">
</div>
<div class="production">
<h3>Milk Production</h3>
</div>
<div class="shade">
<div class="shade-1">
<div class="a">
<h3>Shade A:</h3>
<input type="text" placeholder="Enter amount of milk">
</div>
<div class="b">
<h3>Shade B:</h3>
<input type="text" placeholder="Enter amount of milk">
</div>
</div>
<div class="shade-2">
<div class="c">
<h3>Shade C</h3>
<input type="text" placeholder="Enter amount of milk">
</div>
<div class="d">
<h3>Shade D</h3>
<input type="text" placeholder="Enter amount of milk">
</div>
</div>
<div id="button">
<button>Submit</button>
</div>
</div>
</main>
</div>
</div>
</body>
</html>