Page 210 - CITS - CSA - TP (Volume 1) - Hindi
P. 210
कंप्यूटर सॉफ्टवेयर एप्लीकेशन- CITS
अ ास 48 : टेबल, टो , टू लिट पर दश न करना (Demonstrateon Table, toasts, tooltips)
उ े
इस अ ास के अंत म आप यह कर सक गे
• HTML म बूट ैप टेबल का उपयोग कर
• HTML म बूट ैप टो का उपयोग कर
• HTML म बूट ैप टू लिट का उपयोग कर ।
आव कताएं (Requirements)
औजार/साम ी (Tools/Materials)
• लेटे कॉ फ़गरेशन वाला डे टॉप / लैपटॉप
• टे एिडटर
• वेब ाउज़र
ि या (Procedure)
टा 1: टेबल का उपयोग करना
1 एक बेिसक बूट ैप 5 टेबल बनाएँ
• टे एिडटर ओपन कर
• िन िल खत कोड िलख
<!DOCTYPE html>
<html lang=”en”>
<head>
<title>Bootstrap Example</title>
<meta charset=”utf-8”>
<meta name=”viewport” content=”width=device-width, initial-scale=1”>
<link href=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css” rel=”stylesheet”>
<script src=”https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js”></script>
</head>
<body>
<div class=”container mt-3”>
<h2>Table</h2>
<table class=”table”>
<thead>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Email</th>
194

