HTML layout

The web pages we open in our daily lives are always orderly and comfortable to look at, but do you know how they do it? They are laid out using our HTML elements + some css styles, so let’s learn how to layout the page today.


##Website layout

Most websites arrange content into multiple columns (just like a magazine or newspaper).

Most websites can use the
or elements to create multiple columns. CSS is used to position elements or create backgrounds and colorful looks for pages.

Although we can use the HTML table tag to design a beautiful layout, the table tag isnot recommendedas a layout tool - tables are not layout tools.

Tips: Web page layout is very important to improve the appearance of the website,Please design your web page layout carefully.


##HTML layout - using the

element## The #div element is a block-level element used to group HTML elements.

Example

The following example uses five div elements to create a multi-column layout with some simple css styling:

    php中文网(php.cn) 
这里是内容

The above HTML code will Produces the following result:

4.jpg


HTML layout using table

Comments

: The

element is not designed as a layout tool.
The role of the element is to display tabular data.

Using the

element can achieve layout effects, because the table element can be styled through CSS:

Example

Use
elements to layout

    php中文网(php.cn) 

网站标题

网站菜单
HTML
CSS
JavaScript
网站内容
版权 © php.cn
Code running results:

1.jpg


# #HTML layout

Tip: The biggest advantage of using CSS is that if the CSS code is stored in an external style sheet, the site will be easier to maintain. By editing a single file, you can change the layout of all pages. To learn more about CSS,visit our CSS tutorial.

Tip: Since creating advanced layouts is time-consuming, using templates is a quick option . There are many free website templates available through search engines (you can use these pre-built website layouts and optimize them).

For exampleUse Bootstrap

Bootstrapis to use a ready-made CSS framework.

Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive web.

Bootstrap helps you develop sites that look great at any size: monitor, laptop, tablet or mobile phone:

To learn about Bootstrap, read our Bootstrap tutorial.



Continuing Learning
||
php中文网(php.cn)
这里是内容
submit Reset Code
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!