-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap.html
More file actions
91 lines (64 loc) · 2.45 KB
/
bootstrap.html
File metadata and controls
91 lines (64 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bootstrap</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
</head>
<body>
<!-- Give this section a maximum width and center it using the margin trick from yesterday -->
<section style="margin: auto; width: 50%;">
<h2>Form</h2>
<form>
<!-- Use the bootstrap docs to find the relevant classes to style the labels and inputs -->
<label for="exampleInputEmail1" class="form-label">Email address</label>
<input type="email" name="email" id="exampleInputEmail1" class="form-control">
<label for="username" class="form-label">Username</label>
<input type="text" class="form-control" aria-label="Username">
<label for="exampleInputPassword1" class="form-label">Password</label>
<input type="password" id="exampleInputPassword1" class="form-control">
<!-- Use the bootstrap docs to find the relevant classes to style the buttons -->
<button type="reset" class="btn btn-danger">RESET</button>
<button type="submit" class="btn btn-success">Submit</button>
</form>
<br>
<br>
<div class="container">
<div class="row">
<div class="col">
<button>1</button>
</div>
<div class="col">
<button>2</button>
</div>
<div class="col">
<button>3</button>
</div>
</div>
<div class="row">
<div class="col">
<button>4</button>
</div>
<div class="col">
<button>5</button>
</div>
<div class="col">
<button>6</button>
</div>
</div>
<div class="row">
<div class="col">
<button>7</button>
</div>
<div class="col">
<button>8</button>
</div>
<div class="col">
<button>9</button>
</div>
</div>
</div>
</section>
</body>
</html>