-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaddress-from-with-image.html
144 lines (125 loc) · 5.52 KB
/
address-from-with-image.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
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
<!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>Material Design for Bootstrap</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.15.2/css/all.css" />
<!-- Google Fonts Roboto -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap" />
<!-- MDB -->
<link rel="stylesheet" href="css/bootstrap-address-form.min.css" />
</head>
<body>
<!-- Start your project here-->
<style>
.title-style{
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 700;
font-size: 20px;
color: hsl(52, 0%, 98%);
}
.title-quote{
font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 400;
color: hsl(52, 0%, 98%);
}
</style>
<div class="container py-5">
<div class="row d-flex justify-content-center align-items-center">
<div class="col">
<div class="card my-4 shadow-3">
<div class="row g-0">
<div class="col-xl-6 d-xl-block bg-image">
<img src="https://mdbcdn.b-cdn.net/img/Others/extended-example/delivery.webp"
alt="Sample photo" class="img-fluid" />
<div class="mask" style="background-color: rgba(0, 0, 0, 0.6)">
<div class=" justify-content-center align-items-center h-100">
<div class=" text-center" style="margin-top: 220px;">
<i class="fas fa-truck text-white fa-3x"></i>
<p class="text-white title-style">Lorem ipsum delivery</p>
<p class="text-white mb-0"></p>
<figure class="text-center mb-0">
<blockquote class="blockquote text-white">
<p class="pb-3">
<i class="fas fa-quote-left fa-xs text-primary"
style="color: hsl(210, 100%, 50%) ;"></i>
<span class="lead font-italic">Everything at your doorstep.</span>
<i class="fas fa-quote-right fa-xs text-primary"
style="color: hsl(210, 100%, 50%) ;"></i>
</p>
</blockquote>
</figure>
</div>
</div>
</div>
</div>
<div class="col-xl-6">
<div class="card-body p-md-5 text-black">
<h3 class="mb-4 text-uppercase">Delivery Info</h3>
<div class="row">
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" id="form3Example1m" class="form-control form-control-lg" />
<label class="form-label" for="form3Example1m">First name</label>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="form-outline">
<input type="text" id="form3Example1n" class="form-control form-control-lg" />
<label class="form-label" for="form3Example1n">Last name</label>
</div>
</div>
</div>
<div class="form-outline mb-4">
<input type="text" id="form3Example8" class="form-control form-control-lg" />
<label class="form-label" for="form3Example8">Address</label>
</div>
<div class="row">
<div class="col-md-6 mb-4">
<select class="select">
<option value="1">State</option>
<option value="2">Option 1</option>
<option value="3">Option 2</option>
<option value="4">Option 3</option>
</select>
</div>
<div class="col-md-6 mb-4">
<select class="select">
<option value="1">City</option>
<option value="2">Option 1</option>
<option value="3">Option 2</option>
<option value="4">Option 3</option>
</select>
</div>
</div>
<div class="form-outline mb-4">
<input type="text" id="form3Example3" class="form-control form-control-lg" />
<label class="form-label" for="form3Example3">Zip</label>
</div>
<div class="form-outline mb-4">
<input type="text" id="form3Example2" class="form-control form-control-lg" />
<label class="form-label" for="form3Example2">Email</label>
</div>
<div class="d-flex justify-content-end pt-3">
<button type="button" class="btn btn-success btn-lg ms-2"
style="background-color:hsl(210, 100%, 50%) ">Place order</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End your project here-->
<!-- MDB -->
<script type="text/javascript" src="js/mdb.min.js"></script>
<!-- Custom scripts -->
<script type="text/javascript"></script>
</body>
</html>