π<!DOCTYPE> : Defines the document type
π<html> : Defines an HTML document
π<head> : Contains metadata/information for the document
π<title> : Defines a title for the document
π<body> : Defines the document's body
π<h1> to <h6> : Defines HTML headings
π<p>: Defines a paragraph
π<br> : Inserts a single line break
π<hr>: Defines a thematic change in the content
π<!--...--> Defines a comment
β‘οΈ List
π<ul>: Defines an unordered list
π<ol>: Defines an ordered list
π<li>: Defines a list item
π<dl>: Defines a description list
π<dt>: Defines a term/name in a description list
π<dd>: Defines a description of a term/name in a description list
β‘οΈ Tables
π<table> : Defines a table
π<caption> : Defines a table caption
π<th>: Defines a header cell in a table
π<tr>: Defines a row in a table
π<td>: Defines a cell in a table
π<thead> : Groups the header content in a table
π<tbody>Groups the body content in a table
π<tfoot>Groups the footer content in a table
π<col>Specifies column properties for each column within a <colgroup> element
π<colgroup>Specifies a group of one or more columns in a table for formatting
β‘οΈ Styles and Semantics
π<style>: Defines style information for a document
π<div>: Defines a section in a document
π<span>: Defines a section in a document
π<header>: Defines a header for a document or section
π<footer>: Defines a footer for a document or section
π<main>: Specifies the main content of a document
π<section>: Defines a section in a document
π<article>: Defines an article
π<aside>: Defines content aside from the page content
π<details>: Defines additional details that the user can view or hide
π<dialog> : Defines a dialog box or window
π<summary> : Defines a visible heading for a <details> element
π<data>: Adds a machine-readable translation of a given content
β‘οΈ Meta Info
π<head>: Defines information about the document
π<meta>: Defines metadata about an HTML document
π<base>: Specifies the base URL/target for all relative URLs in a document
β‘οΈ Forms and Input
π<form> : Defines an HTML form for user input
π<input>: Defines an input control
π<textarea>: Defines a multiline input control (text area)
π<button>: Defines a clickable button
π<select>: Defines a drop-down list
π<optgroup> : Defines a group of related options in a drop-down list
π<option>: Defines an option in a drop-down list
π<label>: Defines a label for an <input> element
π<fieldset>: Groups related elements in a form
π <legend>Defines a caption for a <fieldset> element
π <datalist>Specifies a list of pre-defined options for input controls
π <output>Defines the result of a calculation
β‘οΈ Formatting
π<abbr>Defines an abbreviation or an acronym
π<address>Defines contact information for the author/owner of a document/article
π<b>Defines bold text
π<bdi>Isolates a part of text that might be formatted in a different direction from other text outside it
π<bdo>: Overrides the current text direction
π<blockquote>: Defines a section that is quoted from another source
π <cite> : Defines the title of a work
π<code>: Defines a piece of computer code
π<del>: Defines text that has been deleted from a document
π <dfn>: Specifies a term that is going to be defined within the content
π <em> : Defines emphasized text
π<i>: Defines a part of text in an alternate voice or mood
π<ins>: Defines a text that has been inserted into a document
π<kbd> : Defines keyboard input
π<mark>: Defines marked/highlighted text
π<meter>: Defines a scalar measurement within a known range (a gauge)
π<pre> : Defines preformatted text
π<progress>: Represents the progress of a task
π<q>: Defines a short quotation
π <rp> : Defines what to show in browsers that do not support ruby annotations
π<rt> : Defines an explanation/pronunciation of characters (for East Asian typography)
π<ruby> :Defines a ruby annotation(for East Asian typography)
π<s> :Defines text that is no longer correct
π<samp> : Defines sample output from a computer program
π<small> : Defines smaller text
π<strong> : Defines important text
π<sub> : Defines subscripted text
π<sup>: Defines superscripted text
π<template>: Defines a container for content that should be hidden when the page loads
π<time> : Defines a specific time (or datetime)
π <u>: Defines some text that is unarticulated and styled differently from normal text
π <var> : Defines a variable
π<wbr>: Defines a possible line-break
β‘οΈ Audio / Video
π <audio>: Defines sound content
π<source>: Defines multiple media resources for media elements (<video>, <audio> and <picture>)
π<track>: Defines text tracks for media elements (<video> and <audio>)
π<video>: Defines a video or movie
β‘οΈ Links
π<a>: Defines a hyperlink
π<link> : Defines the relationship between a document and an external resource (most used to link to style sheets)
Here are some insights which I got from yesterday's spaceπ
β‘οΈThere are two kinds of people we get to see after rejection 1. One who take it in a positive way , pen down things that lead to rejection , Work hard try to overcome those and prepare themself for the next interview
2. The other one after rejection takes the step back thinking that's it's very difficult for them to clear those interviews and they develop a fear of rejection inside them which doesn't let them prepare for the next one
β‘οΈ Never give any labels to yourself Like -
π You're an introvert π You're not good at Coding .. You can't do this or that ...etc
Because at the time you start giving these labels ....then it's becomes very difficult for you to overcome these and move ahead in life.
Day 6 : Learnt the function concepts
β‘οΈ Function introduction
β‘οΈ Function Declaration
β‘οΈ Function expression
β‘οΈ Function calling #javascript#100DaysOfCode
Here are some resources which will help while learning functions π