-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsamplepage.html
More file actions
164 lines (144 loc) · 5.38 KB
/
samplepage.html
File metadata and controls
164 lines (144 loc) · 5.38 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Sample Page</title>
<!-- MDB icon -->
<!-- <link rel="icon" href="img/mdb-favicon.ico" type="image/x-icon"> -->
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap">
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Material Design Bootstrap -->
<link rel="stylesheet" href="css/mdb.min.css">
<!-- Your custom styles (optional) -->
<link href="//db.onlinewebfonts.com/c/f97196963cd19b4830b860a14bce7a37?family=Stem" rel="stylesheet" type="text/css"/>
<link rel="stylesheet" href="css/pagestyle.css">
</head>
<body>
<!-- Start your project here-->
<!-- Just an image -->
<nav class="navbar navbar-dark color">
<a class="navbar-brand" href="#">
<img src="https://mdbootstrap.com/img/logo/mdb-transparent.png" height="30" alt="mdb logo">
</a>
</nav>
<!-- Extended default form grid -->
<div class=form>
<h2>Fill Below (ചുവടെ പൂരിപ്പിക്കുക)</h2>
<form>
<!-- Default input -->
<div class="form-group">
<label for="inputAddress">Name (പേര്)</label>
<input type="text" class="form-control" id="inputAddress" placeholder="Enter Name (പേര് നൽകുക)">
</div>
<!-- Default input -->
<div class="form-group">
<label for="inputAddress2">Phone Number (ഫോൺ നമ്പർ)</label>
<input type="text" class="form-control" id="inputAddress2" placeholder="Enter Phone Number (ഫോൺ നമ്പർ നൽകുക)">
</div>
<!-- Default input -->
<div class="form-group">
<label for="inputAddress">Address (വിലാസം)</label>
<input type="text" class="form-control" id="inputAddress" placeholder="Enter Address (വിലാസം നൽകുക)">
</div>
<!-- Basic dropdown -->
<button class="btn color dropdown-toggle mr-4" type="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Number Of Workers Required (ആവശ്യമായ തൊഴിലാളികളുടെ എണ്ണം) </button>
<div class="dropdown-menu">
<a class="dropdown-item" href="#">1</a>
<a class="dropdown-item" href="#">2</a>
<a class="dropdown-item" href="#">3</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">More (കൂടുതൽ)</a>
</div>
<!-- Basic dropdown -->
<div class="text-center">
<button type="submit" class="btn color btn-lg ">Sumbit (സമർപ്പിക്കുക)</button>
</div>
</form>
<h2>Calculations</h2>
<!-- Horizontal material form -->
<form>
<!-- Grid row -->
<div class="form-group row">
<!-- Default input -->
<!-- Material input -->
<label for="inputEmail3MD" class="col-sm-2 col-form-label">Given Count</label>
<div class="col-sm-10">
<div class="md-form mt-0">
<input type="email" class="form-control" id="inputEmail3MD" placeholder="" disabled>
</div>
</div>
</div>
<!-- Grid row -->
<!-- Grid row -->
<div class="form-group row">
<!-- Material input -->
<label for="inputPassword3MD" class="col-sm-2 col-form-label">Total Price</label>
<div class="col-sm-10">
<div class="md-form mt-0">
<input type="password" class="form-control" id="inputPassword3MD" placeholder="">
</div>
</div>
</div>
<!-- Grid row -->
<!-- Grid row -->
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn color btn-lg">Proceed </button>
</div>
</div>
<!-- Grid row -->
</form>
<!-- Horizontal material form -->
</div>
<!-- Extended default form grid -->
<!-- End your project here-->
<!-- Footer -->
<footer class="page-footer font-small color pt-4">
<!-- Footer Links -->
<div class="container-fluid text-center text-md-left">
<!-- Grid row -->
<div class="row">
<!-- Grid column -->
<div class="col-md-6 mt-md-0 mt-3">
<!-- Content -->
<h5 class="text-uppercase">Footer Content</h5>
<p>Here you can use rows and columns to organize your footer content.</p>
</div>
<!-- Grid column -->
<hr class="clearfix w-100 d-md-none pb-3">
<!-- Grid column -->
<a><i class="fas fa-phone-alt fa-3x"></i></a>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">© 2020 Copyright:
<a href="https://dartdelivery.com/"> dartdelivery.com</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
<!-- jQuery -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Your custom scripts (optional) -->
<script type="text/javascript"></script>
</body>
</html>