HTML is the language used to build web pages using different blocks into it. Those elements are styling, divided into two different types as HTML Blocks level elements and inline elements. All these kinds of elements are enclosed into the
tag of HTML blocks. Block-level elements are structured to design the main layout of your web page.If we are talking about the structure view, it creates a bigger structure view than the inline elements view. Every block-level elements start with a new line occupying the full width of the screen. They must be written within opening and closing tag .
Grouping of elements is an important method to divide layout in the forms of sections or sub-sections. It’s possible to put any block elements into another block element, as well as we are also able to put inline elements into the HTML Blocks elements, but it is not possible to put block-level elements into the inline elements rather than element tag.
Syntax for different HTML Blocks
Let’s see the syntax for different HTML Block-level elements are as follows:
1. div element: It works as a block element, which takes the full width of the screen and always starts on a new line.
<div> { ……Lines of code…...} </div>
2. table: table is used to show data in a tabular format including table header, table body having table row and a table column.
3. Listing elements: Ordered List & Unordered List.
<h6 id="An-Unordered-list">An Unordered list </h6>
An Ordered list
4. Putting form elements: Putting form elements to create an HTML form as follows.
Elements of HTML Blocks
There are different elements used as HTML Block-level elements are as follows:
- : Address tag is used to specify the author’s contact information in the HTML article.
-
: The article is used to specify the content which is self-contained. - This is a kind of elements located aside from the main content; usually, it is treated as a sidebar.
-
:
Whenever we are taking content from another source, blockquote is used. - Canvas is an element is used in web documents for providing graphic space.
- : It is the most important element in all over web development which is used to divide HTML documents into sections or division.
- Whatever group related labels or elements are used in web forms that are clubbed together into the fieldset.
- HTML forms are defined using this block-level element. It is most commonly used in the web development process.
- It is used to indicates the footer section of a web page.
-
These are the headings used in HTML language defining level 1 to 6.:
: This element is used to indicates the header section of the web page.- This is the latest element introduced in HTML 5, which is used to indicates the section of the page, including navigation links into it.
: Section element is used to represents a generic section to its document.: Whenever we want to show data in the tabular format, a table is a perfect solution. It will create a table to your HTML document.
- If you want to include video content in your HTML document, then it’s also possible by using simple video elements in your code.
- : If a user wants to show a list of items, then it’s possible using the
- element.
- :
- :
this element used to describe different terms in the format of the description list.Examples of HTML Blocks
Here are some examples of HTML blocks which are given below:
Example #1
In the below example, we are going to use some basic Html block elements like div, p, headings, lists element with the ordered and unordered list, etc.
Code:
<title>HTML Block Level Elements </title> <h1 id="HTML-Block-Level-Elements">HTML Block Level Elements </h1> <p>This is the example of HTML block elements showing multiple block level elements enclosed within it .Here we can also use inline elements too </p> <div> <h3 id="Example-including-div-p-headings-elements-list-elements">Example including div , p , headings elements, list elements</h3> <p>This example shows different kind of HTML block elements like div, p , headings in between h1 to h6 </p> </div> <h2 id="Example-of-Lists">Example of Lists</h2> <h4 id="An-Unordered-HTML-List-showing-Countries">An Unordered HTML List showing Countries </h4>
- Mumbai
- Pune
- Nagpur
An Ordered HTML List showing Countries
- Mumbai
- Pune
- Nagpur
Output:
Example #2
Here we will see another example in which we are creating a table.
Code:
<style> table { border-collapse: collapse; } th, td { border: 1px solid black; padding: 10px; text-align: left; } </style>
Sr No Emp ID Emp Name Designation 1 111 John Developer 2 112 Alebela Tester 3 113 Rakesh Project Manager 4 114 Siya UX Designer 5 115 Kuldeep Web Developer Output:
Example #3
Now by using HTML blocks elements, we are going to create an HTML form as follows:
Code:
<title>Password Input Control</title>
Output:
Example #4
Here we are trying to Address the element in HTML blocks.
Code:
<address> Presented BY <a href="mailto:%5Bemail%C2%A0protected%5D">Narendra Modi</a>.<br> Visit us at:Delhi<br> primeminister.com<br> Box 104, Red Fort<br> Delhi </address>
Output:
Conclusion
The above information concluded that the HTML blocks level element included in the HTML document’s body. It will create some large HTML blocks of sections like paragraphs or pages with the division. One can include another block-level element into the block-level elements. It’s also possible to include inline elements into the block-level element but including block-level elements into the inline elements is not possible.
The above is the detailed content of HTML Blocks. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version
Chinese version, very easy to use
