-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass8.html
More file actions
36 lines (34 loc) · 1.26 KB
/
class8.html
File metadata and controls
36 lines (34 loc) · 1.26 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
<!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">
<title>Document</title>
<!-- CSS ONLY -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.2/dist/css/bootstrap.min.css" rel="stylesheet" >
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
</head>
<body>
<div align="center">
<h1>Welcome</h1>
<button class="btn btn-success">Click</button>
</div>
<!-- CREATION OF GRID USING BOOTSTRAP -->
<div class="container text-center">
<div class="row">
<div class="col-lg-4 bg-primary m-2">
Column <i class="bi bi-airplane-fill"></i>
</div>
<div class="col-xxl-7 bg-secondary m-2">
Column
</div>
<!-- adding color -->
<div class="col bg-success m-2">
Column
</div>
</div>
</div>
<i class="bi bi-emoji-heart-eyes" style="font-size:55px ; background-color:purple;color:yellow"></i>
</body>
</html>