xxxxxxxxxx
1
<section class="intro">
2
<div class="bg-image-vertical h-100" style="background-color: #EFD3E4;
3
background-image: url(https://mdbootstrap.com/img/Photos/new-templates/search-box/img1.jpg);
4
">
5
<div class="mask d-flex align-items-center h-100">
6
<div class="container">
7
<div class="row justify-content-center">
8
<div class="col-12 col-lg-10">
9
<div class="card" style="border-radius: 1rem;">
10
<div class="card-body p-5">
11
12
<h1 class="mb-5 text-center">Checkout Form</h1>
13
14
<form>
15
<!-- 2 column grid layout with text inputs for the first and last names -->
16
<div class="row">
17
<div class="col-12 col-md-6 mb-4">
18
<div class="form-outline">
19
<input type="text" id="form6Example1" class="form-control" />
20
<label class="form-label" for="form6Example1">First name</label>
21
</div>
22
</div>
23
<div class="col-12 col-md-6 mb-4">
24
<div class="form-outline">
25
<input type="text" id="form6Example2" class="form-control" />
26
<label class="form-label" for="form6Example2">Last name</label>
27
</div>
28
</div>
29
</div>
30
31
<!-- Text input -->
32
<div class="form-outline mb-4">
33
<input type="text" id="form6Example3" class="form-control" />
34
<label class="form-label" for="form6Example3">Company name</label>
35
</div>
36
37
<!-- Text input -->
38
<div class="form-outline mb-4">
39
<input type="text" id="form6Example4" class="form-control" />
40
<label class="form-label" for="form6Example4">Address</label>
41
</div>
42
43
<!-- Email input -->
44
<div class="form-outline mb-4">
45
<input type="email" id="form6Example5" class="form-control" />
46
<label class="form-label" for="form6Example5">Email</label>
47
</div>
48
49
<!-- Number input -->
50
<div class="form-outline mb-4">
51
<input type="number" id="form6Example6" class="form-control" />
52
<label class="form-label" for="form6Example6">Phone</label>
53
</div>
54
55
<!-- Message input -->
56
<div class="form-outline mb-4">
57
<textarea class="form-control" id="form6Example7" rows="4"></textarea>
58
<label class="form-label" for="form6Example7">Additional information</label>
59
</div>
60
61
<!-- Checkbox -->
62
<div class="form-check d-flex justify-content-center mb-4">
63
<input
64
class="form-check-input me-2"
65
type="checkbox"
66
value=""
67
id="form6Example8"
68
checked
69
/>
70
<label class="form-check-label" for="form6Example8"> Create an account? </label>
71
</div>
72
73
<!-- Submit button -->
74
<button type="submit" class="btn btn-secondary btn-rounded btn-block">Place order</button>
75
</form>
76
77
</div>
78
</div>
79
</div>
80
</div>
81
</div>
82
</div>
83
</div>
84
</section>
xxxxxxxxxx
1
html,
2
body,
3
.intro {
4
height: 100%;
5
}
6
7
.bg-image-vertical {
8
position: relative;
9
overflow: hidden;
10
background-repeat: no-repeat;
11
background-position: right center;
12
background-size: auto 100%;
13
}
1
1
Console errors: 0