HTML

  • HTML stands for Hypertext Markup Language. It is a markup language used for creating web pages and applications that can be viewed on the internet. HTML uses tags to structure content and give it meaning, such as headings, paragraphs, and links.

  • For example, to create a basic web page using HTML, you would use the following code:
  • This code includes the HTML doctype, an HTML element that contains the head and body elements, a title element in the head section, and three elements in the body section: an h1 heading, a paragraph, and a link to another website. When rendered in a web browser, this code would display a basic web page with a heading, some text, and a clickable link.

The basic components of an HTML document include the following:

  1. The HTML doctype declaration: This informs the web browser which version of HTML the document is written in. Here's an example of an HTML5 doctype declaration:

  2. The HTML document structure: This includes the <html> tag, which contains the <head> and <body> sections of the document. Here's an example:

  3. The head section: This contains metadata about the document, such as the title and any links to external stylesheets or scripts. Here's an example:

  4. The body section: This contains the visible content of the document, such as text, images, and links. Here's an example:

Together, these components form the basic structure of an HTML document.

The DOCTYPE declaration in HTML specifies the version of HTML that is being used in the document. It tells the web browser how to interpret and display the content of the web page.

For example, the following DOCTYPE declaration specifies that the web page is using HTML5:

<!DOCTYPE html>

Without this declaration, the web browser may not know how to properly display the content of the web page.

To create a new HTML document, you can use any text editor or HTML editor of your choice. Here are the steps:

  1. Open your text editor or HTML editor. Examples of text editors include Notepad, TextEdit, and Sublime Text. Examples of HTML editors include Adobe Dreamweaver and Microsoft Expression Web.
  2. Create a new file and save it with a .html extension. For example, you can name the file "index.html".
  3. Add the basic HTML structure to the file by typing the following code:
  4. Add your content between the <body> and </body> tags. For example, you can add headings, paragraphs, images, and links.
  5. Save the file and open it in a web browser to see how it looks.

That's it! You now have a new HTML document.

The main difference between HTML and XHTML is in the syntax and rules of the language.

  • HTML (Hypertext Markup Language) is a markup language that uses a more relaxed syntax, allowing for some errors and omissions. For example, in HTML, tags do not have to be closed, and attribute values do not have to be in quotes.
  • XHTML (Extensible Hypertext Markup Language) is a stricter version of HTML that follows XML rules. It requires well-formed syntax, meaning that every tag must be closed and attribute values must be enclosed in quotes. XHTML documents are also required to be properly nested and have a root element.

Here's an example of HTML code:

Here's an example of the same code in XHTML:

As you can see, the main difference is in the syntax and the use of the <!DOCTYPE> declaration in XHTML.

There are several common types of HTML tags, including:

  1. Heading tags: Used to define headings or subheadings on a webpage. For example, the <h1> tag is used for the main heading, while <h2> to <h6> tags are used for subheadings.
  2. Paragraph tags: Used to define paragraphs of text on a webpage. For example, the <p> tag is used to define a single paragraph.
  3. Anchor tags: Used to create hyperlinks to other webpages or files. For example, the <a> tag is used to create a link to another webpage or file.
  4. Image tags: Used to insert images on a webpage. For example, the <img> tag is used to insert an image, and the source attribute is used to specify the image URL.
  5. List tags: Used to create lists of items. There are two types of list tags: ordered and unordered. The <ol> tag is used for ordered lists, while the <ul> tag is used for unordered lists.
  6. Table tags: Used to create tables of data on a webpage. For example, the <table> tag is used to create a table, and the <tr>, <td>, and <th> tags are used to define the rows, cells, and headers of the table, respectively.
  7. Form tags: Used to create interactive forms on a webpage. For example, the <form> tag is used to create a form, and the <input> tag is used to create input fields such as text boxes and radio buttons.

These are just a few examples of common HTML tags. There are many other types of tags that can be used to format text, create buttons, embed multimedia, and more.

Block-level elements are HTML elements that start on a new line and take up the full width available, such as headings (h1-h6), paragraphs (p), lists (ul, ol), and divs. These elements are used to structure the layout of a webpage.

Inline-level elements are HTML elements that do not start on a new line and take up only as much width as necessary. Examples include links (a), images (img), and spans. These elements are used to add content to the block-level elements and to add additional formatting.

For example, consider the following HTML code:

In this example, the h1 and p elements are block-level elements, while the a and span elements are inline-level elements. The link and some text within the p element are inline elements because they are nested within the block-level p element.

An HTML attribute provides additional information about an HTML element. Attributes are added to the opening tag of the element and consist of a name and a value, separated by an equal sign. The value is typically enclosed in quotes.

For example, the "href" attribute is used to specify the URL of a link in an anchor tag. The syntax for using this attribute is:

In this example, "href" is the name of the attribute, and "https://www.example.com" is the value. The attribute provides additional information about the purpose of the anchor tag, which is to create a clickable link.

To create a hyperlink in HTML, you can use the anchor tag a with the href attribute to specify the destination URL. Here's an example:

In this example, "Click here" is the text that will be displayed as the link, and "https://www.example.com" is the destination URL. When a user clicks on the link, they will be taken to the specified URL.

The HTML alt attribute specifies alternative text that should be displayed when an image cannot be rendered or when the user is using a screen reader to access the web page. It is important for accessibility and helps visually impaired users understand the content of an image.

Here's an example of how to use the alt attribute:

In the above example, if the image cannot be displayed for some reason, the text "A beautiful image" will be displayed in its place.

To insert an image in HTML, you can use the <img> tag. The src attribute is used to specify the path of the image file, and the alt attribute is used to provide a text description of the image.

Here's an example code to insert an image in HTML:

In this example, path/to/image.jpg is the path to the image file and "A beautiful image" is the text description that will be displayed if the image fails to load or for screen readers.

HTML tables are used to display data in rows and columns. They allow you to organize and present data in a structured manner. To create a table in HTML, you use the <table> tag, along with other tags such as <tr> for table rows and <td> for table data. Here's an example:

In this example, we create a table with three columns: First Name, Last Name, and Email Address. We then add two rows of data, one for John Doe and one for Jane Doe. The <td> tags define the data for each cell in the table.

To create a table in HTML, you need to use the <table> element. Here is an example of how to create a basic table with three rows and three columns:

In this example, the <table> element is used to create the table, and each row of the table is created using the <tr> element. The first row of the table is designated as the header row using the <th> element, and all subsequent rows are designated as data rows using the <td> element. The content of each cell is simply placed between the opening and closing tags of the appropriate element.

The HTML colspan attribute specifies the number of columns that a cell should span across in a table. This attribute is useful for creating merged cells that span across multiple columns.

For example, consider the following HTML code that creates a table with a single row and three columns:

In this example, the second column (<td>Column 2 and 3 merged</td>) uses the colspan attribute with a value of 2. This tells the browser to merge the second and third columns into a single cell, effectively creating a two-column table within the larger three-column table. The resulting table will have one row with three cells, where the first cell contains "Column 1", the second cell contains "Column 2 and 3 merged", and the third cell is empty.

The HTML rowspan attribute is used to specify the number of rows that a cell should span vertically in a table. It is commonly used to merge cells in a table to create a larger cell.

For example, consider a table with two columns and two rows. If we want to merge the cells in the first row of the first column and make it span both rows, we can use the rowspan attribute with a value of "2" on the cell:

This will create a merged cell in the first column that spans both rows of the table. The second column will contain two separate cells.

An HTML form is a section of an HTML document that contains interactive elements which allow users to enter data and submit it to a server for processing. HTML forms can include various types of input fields, such as text fields, checkboxes, radio buttons, and dropdown lists. They are often used to collect information from website visitors, such as their name, email address, and other personal details. Here is an example of an HTML form:

This form contains three input fields, a text input field for the user's name, an email input field, and a textarea for the user's message. The form also includes a submit button to submit the form to a server-side script for processing. The action attribute specifies the URL where the data will be submitted, and the method attribute specifies the HTTP method used to send the data.

To create a form in HTML, you need to use the <form> tag. This tag is used to define the beginning and end of a form. Inside the <form> tag, you can add various form elements like input fields, dropdowns, checkboxes, radio buttons, etc. Here's an example of a simple form in HTML:

In this example, we have created a form that has two input fields: one for name and one for email. We have also added a submit button. When the user fills out the form and clicks the submit button, the form data is sent to a server-side script for processing.

There are several types of form elements in HTML. Some common ones include:

  1. Text Input: This element allows users to enter text information in a single line.

    Example:

  2. Password Input: This element is similar to the text input element but hides the entered text as it is being typed.

    Example:

  3. Radio Button: This element allows users to select one option from a list of predefined options.

    Example:

  4. Checkbox: This element allows users to select multiple options from a list of predefined options.

    Example:

  5. Select: This element allows users to select one or multiple options from a dropdown list.

    Example:

  6. Textarea: This element allows users to enter multiple lines of text.

    Example:

The HTML input element is used to create form controls that enable the user to input data. It is one of the most commonly used HTML elements and has several types, including text, password, checkbox, radio buttons, and more.

For example, the following code creates an HTML input element of type "text" that allows the user to enter a name:

In this code, the "type" attribute specifies the type of input control, and the "name" attribute is used to identify the input control when the form is submitted.

To create a text input field in HTML, you can use the <input> element with the type attribute set to "text".
Here's an example:

In this example, the label element provides a text label for the input field, and the input element creates the actual text field. The id and name attributes are used to uniquely identify the field in the HTML and in any associated server-side processing.

To create a password input field in HTML, you can use the <input> element with the type attribute set to "password".
Here is an example:

This will create a label "Password:" followed by a password input field. The typed characters will be hidden with bullets for security reasons. The id attribute is used to associate the label with the input field, and the name attribute specifies the name of the input field that will be sent with the form data when the form is submitted.

To create a checkbox input field in HTML, use the <input> element with a type="checkbox" attribute. The label for the checkbox is added using the label element with the for attribute set to the ID of the checkbox input element.
Here's an example code snippet:

In this example, the checkbox input element has an ID of "myCheckbox", a name of "myCheckbox", and a value of "checked". When the checkbox is checked, the value "checked" will be submitted with the form data.

To create a radio button input field in HTML, you can use the <input> element with the type="radio" attribute. Each radio button should have a unique name attribute to group them together, and a value attribute to specify the value for that particular button.
Here's an example code snippet:

In this example, we have created a group of radio buttons with the name "gender" and values of "male", "female", and "other". The label text is associated with each radio button using the <label> element, which improves accessibility for users.

To create a submit button in HTML, you can use the <input> element with the type="submit" attribute.
Here's an example:

In this example, we've created a simple form with two text fields for the user's name and email, and a submit button at the bottom. When the user clicks the submit button, the form data is sent to a server-side script for processing. The value attribute of the submit button determines the text that appears on the button.

The HTML label element is used to associate a label with an HTML form control such as input, textarea, select, etc. This association helps to make the form more accessible for users of assistive technologies.

The for attribute is used to specify which form control the label element is associated with. This attribute value should match the id attribute value of the form control.
Example:

In this example, the label element is associated with an input element using the for attribute with a value of "username". This associates the label with the input field, making it more accessible to users of assistive technologies.

The HTML select element is used to create a drop-down list of options from which a user can choose one or more items. This element is commonly used in forms and can be used to allow users to choose a single option, multiple options, or all options.

Here is an example of how to create a select element in HTML:

In this example, the select element contains three option elements, each with a value attribute and text content. When the user opens the drop-down list, they can see these options and choose one of them. The value of the selected option is sent to the server when the form is submitted.

To create a drop-down list in HTML, you can use the <select> element along with the <option> elements.
Here's a simple example:

In this example, the <label> element is used to provide a description for the drop-down list. The <select> element defines the drop-down list and has a name attribute to identify it when the form is submitted. The <option> elements define the individual items in the list, with a value attribute to specify the value that will be submitted if that option is selected.

To create a file upload input field in HTML, you can use the <input> element with a type attribute value of "file".
Here's an example:

In this example, the <form> element has an actionattribute that specifies where the file should be uploaded to. The method attribute specifies the HTTP method to use when submitting the form, which is typically "post" for file uploads. The enctype attribute is set to "multipart/form-data", which is necessary for file uploads.

The <input> element has a type attribute with a value of "file". to create the file upload input field. The id attribute is used to associate the label with the input field, and the name attribute specifies the name of the file input field when it is submitted.

When the form is submitted, the file selected by the user will be uploaded to the server, and the server-side script specified in the actionattribute will be responsible for processing the uploaded file.

The HTML button element is used to create clickable buttons on a web page. When a user clicks a button, a specified action is triggered, such as submitting a form or navigating to another page. The button element can contain text, images, or both.
Here's an example of a simple HTML button:

In this example, the button element creates a clickable button labeled "Click me" When the user clicks the button, nothing happens by default because we haven't specified an action. We can add an action using JavaScript or by wrapping the button in a form element and specifying an action attribute.

HTML entities are special codes used to display characters that are reserved for HTML syntax, or characters that are not available on a standard keyboard. They are represented by an ampersand '&' followed by a keyword or number, and then a semicolon ';'. For example, '&lt;' is used to display the less than symbol '<', and " " is used to display a non-breaking space.

Here's an example of how to use HTML entities to display the degree symbol:

In this example, the "&deg;" entity is used to display the degree symbol. When the code is rendered in a web browser, the degree symbol will be displayed instead of the "&deg;" entity.

The HTML <meta> tag is used to provide metadata about an HTML document. Metadata can include information such as the character set used in the document, the author of the document, and keywords that describe the document's content. The <meta> tag is not displayed on the page but is used by browsers, search engines, and other web services to understand and process the document.

Here is an example of a <meta> tag that sets the character set of the document to UTF-8:

In this example, the charset attribute is used to set the character set to UTF-8. This ensures that the document is displayed correctly in browsers and other applications that support UTF-8.

To set the character encoding in HTML, you can use the meta tag with the charset attribute inside the head section of your HTML document. The charset attribute specifies the character encoding used in the document.
Here is an example:

In this example, the meta tag with the charset attribute is used to specify that the character encoding of the document is UTF-8. This ensures that the browser displays the text content of the HTML document correctly.

The HTML title element is used to define the title of a webpage, which appears in the browser's title bar or tab. The content of the title element is also used by search engines to understand the content of the webpage, and it is displayed as the headline of search results.
Here's an example of how to use the title element in HTML:

In this example, the title element is used to set the page title to "Example Page Title". When this HTML document is loaded in a web browser, the title will be displayed in the title bar or tab of the browser.

To create a line break in HTML, you can use the <br> tag. This tag is an example of an empty or self-closing tag, which means it doesn't require a closing tag.
Example:

To create a horizontal line in HTML, you can use the <hr> tag.
Here is an example:

This will create a horizontal line between the two paragraphs. The <hr> tag is a self-closing tag, so you don't need to include a closing tag. By default, the line will be centered on the page and will have a width of 100%. You can also use attributes to customize the appearance of the line, such as changing the color or width.

The HTML div element is used to create a container that groups and organizes other HTML elements together. It is a block-level element that does not have any default styling or semantic meaning, but it can be assigned a class or ID for styling purposes.

For example, the following code creates a div element with a blue background color and contains a heading and a paragraph:

The div element is often used in conjunction with CSS to create a layout for a webpage or to group related content together for styling purposes.

The HTML span element is an inline container used to group and apply styles to a small section of text or a specific part of an HTML document. It does not create a new line or change the structure of the document.

For example, if you want to apply a different style to a word or phrase within a paragraph, you can wrap that text with span tags:

In this example, the text "red" will be displayed in red color because it is wrapped in a span element with a color style attribute. The rest of the paragraph will be displayed in the default color.

In HTML, comments are used to add notes to the code for human readers to understand, but they are ignored by web browsers when rendering the page.
To create a comment in HTML, you can use the following syntax:

Anything you write between the <!-- and --> tags will be treated as a comment and will not be displayed on the webpage.
Here's an example of how you can use a comment in HTML to provide more context:

In this example, the comment provides additional information about what the code is doing and makes it easier for other developers to understand the purpose of the HTML document.

To create a numbered list in HTML, you can use the <ol> element. Each item in the list should be enclosed in an <li> element.
Here's an example:

This will create a numbered list with three items:

  1. Item 1
  2. Item 2
  3. Item 3

You can also customize the numbering style using CSS.

To create a bulleted list in HTML, you can use the unordered list element <ul> and list item element <li>.
Here's an example:

This code will create an unordered list with three items, each preceded by a bullet point. You can customize the bullet points using CSS.

The HTML iframe element is used to embed another HTML document into the current HTML document. This can be useful for displaying external content, such as a map or a video, within a webpage.

Here's an example of how to use the iframe element:

In this example, an iframe is used to embed a Google Map of a hiking trail within the webpage. The src attribute specifies the URL of the external document to be embedded, and the width and height attributes specify the size of the embedded document. The style attribute is used to remove the default border around the iframe, and the allowfullscreen attribute allows the embedded content to be viewed in fullscreen mode.

To embed a video in HTML, you can use the video element.
Here is an example code:

In this example, we have specified the width and height of the video, as well as the controls attribute to add play, pause, and volume controls. We have also included two sources for the video in different formats, so that the browser can choose the appropriate one based on its compatibility. The text "Your browser does not support the video tag" will be displayed in browsers that do not support the video element.

To embed an audio file in HTML, you can use the <audio> element.
Here's a simple example:

In the above example, the src attribute specifies the URL of the audio file, and the type attribute specifies the MIME type of the file. The controls attribute adds audio controls to the player, such as play/pause, volume, and seek. The text between the <audio> and </audio> tags is displayed if the browser does not support the audio element.

HTML5 data attributes are custom attributes that can be added to HTML elements to store additional information. They are prefixed with "data-" and can be used to store data that is not visible to the user, but can be accessed by scripts and CSS.

Here is an example of how to use HTML5 data attributes:

In this example, the "data-info" attribute has been added to the div element with a value of "some information". This data can be accessed using JavaScript, for example:

CSS can also use data attributes to style elements with specific data values. For example:

This CSS rule would apply a yellow background color to any div element with a "data-info" attribute equal to "some information".

The HTML5 canvas element is used to draw graphics using JavaScript. It provides a drawing area on a web page, where you can use JavaScript to draw shapes, lines, text, images, and more. The canvas element is especially useful for creating dynamic, interactive graphics and animations on the web.

Here's an example of creating a canvas element in HTML:

And here's an example of using JavaScript to draw a rectangle on the canvas:

To use CSS with HTML, you can either embed the CSS code in the HTML file using the <style> element or create a separate CSS file and link to it using the <link> element in the HTML file.
Here is an example of using an embedded <style> element in HTML:

In this example, the CSS code is embedded within the <style> element in the <head> section of the HTML file. The CSS code sets the background color of the <body> element to light blue and the color of the <h1> element to red.


Alternatively, you can create a separate CSS file named style.css, for example, and link to it in the HTML file using the following code:

In this example, the CSS code is stored in the style.css file, which is linked to the HTML file using the <link> element in the <head> section of the HTML file.

The HTML5 progress element is used to display the progress of a task, such as the progress of a file upload or the completion percentage of a survey. It is a self-contained element that can be styled with CSS.

Here is an example of how to use the progress element in HTML:

In this example, the value attribute is set to 50, which represents the progress of the task as a percentage. The max attribute is set to 100, which is the maximum value that the progress can reach. The text "50%" is displayed inside the progress element to indicate the current progress.

HTML5 local storage provides a way to store data locally within the user's browser. It allows web applications to store data even after the browser is closed, making it useful for creating offline-capable web applications.

Here is an example of how to use HTML5 local storage:

In this example, we create a text input field, a button to save the input, and a paragraph to display the saved text. When the button is clicked, we save the input to local storage using the localStorage.setItem() method. To retrieve the saved text, we use the localStorage.getItem() method and display it in the paragraph element.

Here are some best practices for writing clean HTML code:

  1. Use proper indentation: Indentation helps to make the HTML code more readable and organized.
    Example:

  2. Use lowercase tags and attributes: Although uppercase tags and attributes are allowed in HTML, using lowercase makes the code easier to read.
    Example:

  3. Use quotes around attributes: Always use quotes around attribute values for better clarity and to avoid errors.
    Example:

  4. Use meaningful class and id names: Use class and id names that describe the purpose of the element.
    Example:

  5. Avoid using deprecated tags and attributes: Some tags and attributes are deprecated in HTML, and their use is discouraged.
    Example:

By following these best practices, you can write clean and organized HTML code that is easy to read and maintain.

From The Same Category

Angular

Browse FAQ's

AngularJS

Browse FAQ's

React

Browse FAQ's

PHP

Browse FAQ's

Javascript DOM

Browse FAQ's

CSS

Browse FAQ's

DocsAllOver

Where knowledge is just a click away ! DocsAllOver is a one-stop-shop for all your software programming needs, from beginner tutorials to advanced documentation

Get In Touch

We'd love to hear from you! Get in touch and let's collaborate on something great

Copyright copyright © Docsallover - Your One Shop Stop For Documentation