forked from toert/Isolated-Bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (39 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="versions/3.3.7/iso_bootstrap3.3.7.css" />
<link rel="stylesheet" href="versions/4.0.0/iso_bootstrap4.0.0.css" />
<link rel="stylesheet" href="versions/5.0.2/iso_bootstrap5.0.2.css" />
<title>Document</title>
</head>
<body>
<div class="bootstrap3">
<div class="custom-container">
<div class="card">
<input type="text" class="form-contol txt" placeholder="Bootstrap 3 Textbox" />
<input type="button" class="btn btn-danger" value="Bootstrap 3 Button" />
</div>
</div>
</div>
<div class="bootstrap4">
<div class="custom-container">
<div class="card">
<input type="text" class="form-contol txt" placeholder="Bootstrap 4 Textbox" />
<input type="button" class="btn btn-danger" value="Bootstrap 4 Button" />
</div>
</div>
</div>
<div class="bootstrap5">
<div class="custom-container">
<div class="card">
<input type="text" class="form-contol txt" placeholder="Bootstrap 5 Textbox" />
<input type="button" class="btn btn-danger" value="Bootstrap 5 Button" />
</div>
</div>
</div>
<link rel="stylesheet" href="style.css" />
</body>
</html>