<style>Example:
<style>body { background-color: lightblue; }</style>
<link>Example:
<link rel="stylesheet" href="styles.css">
<div>Example:
<div class="container">Content here</div>
<span>Example:
<span style="color: red">Highlighted Text</span>
<header>Example:
<header>Website Header</header>
<footer>Example:
<footer>Website Footer</footer>
<nav>Example:
<nav><a href="#home">Home</a></nav>
<article>Example:
<article>This is an article</article>
<section>Example:
<section>This is a section</section>
<aside>Example:
<aside>Related information</aside>
<main>Example:
<main>Main content goes here</main>
<h1> to <h6>Example:
<h1>Main Heading</h1>
<p>Example:
<p>This is a paragraph.</p>
<a>Example:
<a href="https://www.example.com">Click here</a>
<img>Example:
<img src="image.jpg" alt="Description">
<button>Example:
<button>Click me</button>
<input>Example:
<input type="text" placeholder="Enter text">
<select>Example:
<select><option value="option1">Option 1</option></select>
<label>Example:
<label for="name">Name</label>
<form>Example:
<form action="/submit"></form>
<textarea>Example:
<textarea rows="4" cols="50">Text area content</textarea>
<style>Example:
<style>body { background-color: lightgreen; }</style>
<link>Example:
<link rel="stylesheet" href="styles.css">
<meta>Example:
<meta charset="UTF-8">
<body>Example:
<body>Content here</body>
<head>Example:
<head><title>Page Title</title></head>
<iframe>Example:
<iframe src="https://www.example.com"></iframe>
<table>Example:
<table><tr><td>Row 1, Column 1</td></tr></table>
<th>Example:
<th>Header</th>
<tr>Example:
<tr><td>Row 1, Column 1</td></tr>
<td>Example:
<td>Data</td>
<col>Example:
<col style="background-color:yellow">
<caption>Example:
<caption>My Table</caption>
<thead>Example:
<thead><tr><th>Header 1</th></tr></thead>
<tbody>Example:
<tbody><tr><td>Row 1, Column 1</td></tr></tbody>
<tfoot>Example:
<tfoot><tr><td>Footer</td></tr></tfoot>• CSS का महत्व उदाहरण के लिए: CSS (Cascading Style Sheets) वेब पेजों की स्टाइलिंग के लिए उपयोग किया जाता है, जिससे हम टेक्स्ट, रंग, लेआउट आदि को नियंत्रित कर सकते हैं। यह वेब विकास में एक महत्वपूर्ण कौशल है।
CSS के मुख्य प्रॉपर्टीज़ का विवरण : बैकग्राउंड प्रॉपर्टी: यह प्रॉपर्टी वेब पेज के बैकग्राउंड का रंग, इमेज आदि सेट करने के लिए उपयोग होती है। बॉर्डर प्रॉपर्टी: इसका उपयोग तत्वों के चारों ओर बॉर्डर जोड़ने और उसकी स्टाइल, चौड़ाई, और रंग निर्धारित करने के लिए किया जाता है। फॉन्ट प्रॉपर्टी: यह प्रॉपर्टी टेक्स्ट के फॉन्ट फैमिली, साइज, वेट आदि को नियंत्रित करती है।
Tags:
Html Css Javascript