-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcard-view.html
More file actions
173 lines (152 loc) · 7.4 KB
/
Copy pathcard-view.html
File metadata and controls
173 lines (152 loc) · 7.4 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
165
166
167
168
169
170
171
172
173
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<!-- Division container start -->
<div class="container">
<h1>My First bootstrap page </h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Soluta itaque nihil libero! Maiores laboriosam, minima nulla ipsa odit perferendis! Perferendis eos blanditiis eligendi vitae cum quod doloremque? Eius, perspiciatis explicabo?
</p>
<!-- Bootstrap Form Start-->
<form>
<p>
<label>First Name</label>
<input type="text" class="form-control">
</p>
<p>
<label>Date Picker</label>
<input type="datetime-local" class="form-control">
</p>
<p>
<label>Country</label>
<select class="form-control">
<option value="" disabled selected>--Select--</option>
<option value="1">India</option>
<option value="2">Israel</option>
<option value="3">Germany</option>
</select>
</p>
<p>
<input type="checkbox" class="form-check-input">I accept the terms and conditions
</p>
<p>
<input type="radio" class="form-check-input" name="gender">Male
<input type="radio" class="form-check-input" name="gender">Female
</p>
<p>
<button class="btn " style="width: 100%; background-color: #575bad; color: bisque;">Submit</button>
</p>
</form>
<!-- Bootstrap Form End-->
<!-- Bootstrap Grid System -->
<div class="row">
<div class="col-lg-6 col-sm-12">
<h1 style="margin-top: 100px;">Secure, smart,</h1>
<h1>and easy to use</h1>
<h1>email</h1>
<p>
Get more done with Gmail. Now integrated with Google Chat, Google Meet, and more, all in one place.
</p>
<button class="btn" style="width: 30%; background-color:blue; color:white;">Create an account</button>
<button class="btn" style="width:20%; background-color:white;color:black;">For work</button>
</div>
<div class="col-lg-6 col-sm-12">
<img src="https://lh3.googleusercontent.com/PWXM4hp9lRRezHTV86SqLwhRQMz4_Lk08jll3GkWBvBZy_Uk6kvUvwIrVilwaIW2mHZJoccchG6o9a5UdOJEwQPf9oJGmOGSglo3VW0=rw-e365-w2880" alt="Broken Image" style="width: 100%;">
</div>
</div>
<!-- Bootstrap Grid System -->
<!-- Card View Start -->
<div class="row">
<div class="col-3">
<!-- Product Card Start -->
<div class="card">
<img src="https://www.apple.com/newsroom/images/product/iphone/geo/Apple-iPhone-14-Pro-iPhone-14-Pro-Max-silver-220907-geo_inline.jpg.large.jpg" style="width: 50%;">
<div class="card-body">
<h5 class="card-title">iPhone14 Pro INR 1.8L</h5>
<p>
48MP Camera with 4K recording
</p>
<button class="btn btn-primary" style="width: 100%;">Add to Cart</button>
</div>
</div>
<!-- Product Card End -->
</div>
<div class="col-3">
<!-- Product Card Start -->
<div class="card">
<img src="https://i.gadgets360cdn.com/large/samsung_galaxy_z_fold_3_image_1628688597694.jpg?downsize=400:*" style="width: 90%;">
<div class="card-body">
<h5 class="card-title">Samsung Galaxy Z Fold 3 INR 1.7L</h5>
<p>
12MP Camera with 4K recording
</p>
<button class="btn btn-primary" style="width: 100%;">Add to Cart</button>
</div>
</div>
<!-- Product Card End -->
</div>
<div class="col-3">
<!-- Product Card Start -->
<div class="card">
<img src="https://www.apple.com/newsroom/images/product/iphone/geo/Apple-iPhone-14-Pro-iPhone-14-Pro-Max-silver-220907-geo_inline.jpg.large.jpg" style="width: 50%;">
<div class="card-body">
<h5 class="card-title">iPhone14 Pro INR 1.8L</h5>
<p>
48MP Camera with 4K recording
</p>
<button class="btn btn-primary" style="width: 100%;">Add to Cart</button>
</div>
</div>
<!-- Product Card End -->
</div>
<div class="col-3">
<!-- Product Card Start -->
<div class="card">
<img src="https://www.apple.com/newsroom/images/product/iphone/geo/Apple-iPhone-14-Pro-iPhone-14-Pro-Max-silver-220907-geo_inline.jpg.large.jpg" style="width: 50%;">
<div class="card-body">
<h5 class="card-title">iPhone14 Pro INR 1.8L</h5>
<p>
48MP Camera with 4K recording
</p>
<button class="btn btn-primary" style="width: 100%;">Add to Cart</button>
</div>
</div>
<!-- Product Card End -->
</div>
</div>
<!-- Card View End -->
<!-- Bootstrap Table Start -->
<table class="table" border="1">
<thead>
<tr class="table-dark">
<td>Sl</td>
<td>Student Name</td>
<td>USN</td>
</tr>
</thead>
<tbody>
<tr class="table-success">
<td>1</td>
<td>Keerthana</td>
<td>4VV21CS087</td>
</tr>
<tr class="table-warning">
<td>2</td>
<td>Kusuma</td>
<td>4VV21CS084</td>
</tr>
<tr>
<td>3</td>
<td>Keerthana</td>
<td>4VV21CS077</td>
</tr>
</tbody>
</table>
<!-- Bootstrap Table End -->
</div>
<!-- Division container end -->
</body>
</html>