Table of Contents
Elements
Element HTML File का Individual Component होता है. एक HTML File में जो कुछ भी Tags में लिखा जाता है, Element कहलाता है.
Circle में जो कुछ भी HTML Code लिखा हुआ है वह Element है.
<p class = “arora”> Mohit kumar Arora </p>
HTML में Start Tag, Close Tag, Content, Attributes सभी आते हैं.
Void Element –
किसी HTML Program के Element में Start Tag और End Tag नहीं होते तो किसी में End Tag नहीं होता, ऐसे Elements Void Element या Empty Elements कहलाते हैं.
Nested Elements –
इसमें elements के अन्दर Elements होते हैं.
Block Level Element –
ये Element Page को Blocks में बाँटते हैं. ये नई Line से Start होते हैं और पूरी Line पर Effect करते हैं. जैसे –
address, article, aside, blockquote, canvas, dd, <div>, dl, dt, fieldset, figcaption, figure, footer, form, h1 – h6, header, hr, li, main, nav, noscript, ol, output, p, pre, section, table, tfoot, ul and video.
Example –
<!DOCTYPE html>
<html>
<head>
<title> Arora Computer’s HTML </title>
</head>
<body>
<p> My Name is Mohit Kumar </p>
<p> I am Going to Jaipur </p>
</body>
</html>
Result –
Inline elements –
ये नई Line से Start नहीं होते. इन Elements को Requirement के According जितने Content पर जरुरी है उतने ही Content पर लगाया जा सकता है. जैसे –
a, abbr, acronym, b, bdo, big, br, button, cite, code, dfn, em, i, img, input, kbd, label, map, object, q, samp, script, select, small, span, strong, su, sup, textarea, time, tt, var.
Example –
<!DOCTYPE html>
<html>
<head>
<title> Arora Computer’s HTML </title>
</head>
<body>
<a href = “https://supportothers.org”> Click on Link </a>
</body>
</html>
Result –