How to create Baidu homepage with HTML? what is the code
The content of this article is about how to create Baidu homepage with HTML? What is the code? It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
When making the Baidu homepage, in addition to using p for segmentation, you also need to control the position of the block. Generally,
standardizes the size of p, width, and height respectively correspond to the width and height
margin: There are margin-top, margin-left, margin-right, margin-buttom for p positioning
float-left: Arrange the p elements from left to right
After understanding these simple operations, you can make a simple Baidu page by yourself, for example:
The html code of the above page is as follows:
<html> <head> <title>百度一下,你就知道</title> <link href="baidu.ico" rel="shortcut icon" type="ico图标路径"/> <style> .p_head{ width:100%; height:150px; margin-top:0px; } .p_mid{ width:100%; height:130px; margin-top:0px; } .p_body{ width:100%; height:200px; margin-top:0px; } .p_base{ width:100%; height:60px; float:left; margin-top:0px; } .p_based{ width:100%; height:100%; float:left; margin-top:0px; } .p_head1{ width:540px; height:24px; float:right; margin-top:25px; } .p_head2{ width:50px; height:24px; float:left; line-height:24px; text-align:center; } .p_mid1{ width:270px; height:130px; float:left; margin-left:39%; } .p_body1{ width:600px; height:36px; background-color:#999; float:left; margin-left:32%; } .p_base1{ width:60px; height:60px; margin:0 auto; float:left; margin-top:5%; } </style> </head> <body style="margin:0 auto"> <p class="p_head" > <p class="p_head1"> <p class="p_head2" ><font size="1" ><ins>新闻 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>hao123</ins> </font></ins></p> <p class="p_head2" ><font size="1" ><ins>地图 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>资源 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>视频 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>贴吧 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>学术 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>登录 </ins></font></p> <p class="p_head2" ><font size="1" ><ins>设置 </ins></font></p> <p class="p_head2" style="width:70px;background-color:#38f" ><font size="1" color="white" >更多产品</font></p> </p> </p> <p class="p_mid" > <p class="p_mid1" > <a href="https://www.baidu.com/s?wd=%E7%BD%91%E7%BB%9C%E8%A1%A8%E6%83%85%E7%AC%A6%E5%8F%B7%E8%AF%9E%E7%94%9F&sa=ire_dl_gh_logo&rsv_dl=igh_logo_pcs" target="_blank"> <img src="/static/imghw/default1.png" data-src="https://www.baidu.com/img/bd_logo1.png?where=super" class="lazy" height=130 style="max-width:90%"百度一下你就知道"/ alt="How to create Baidu homepage with HTML? what is the code" > </a> </p> </p> <p class="p_body" > <p class="p_body1" > <form action="https://www.baidu.com/s" method="get" > <input style="width:500px;height:36px;"type="text"/><input id="gender" name="gender" type="submit" value="百度一下"style="width:100px;height:36px;"/> </form> </p> </p> <p class="p_base" > <p class="p_base1" style="margin-left:48%;"> <img src="/static/imghw/default1.png" data-src="https://ss1.bdstatic.com/5eN1bjq8AAUYm2zgoY3K/r/www/cache/static/protocol/https/home/img/qrcode/zbios_efde696.png" class="lazy" height=60 style="max-width:90%"我是一个二维码"/ alt="How to create Baidu homepage with HTML? what is the code" > </p> </p> </body> </html>
The above is how to make Baidu homepage using HTML? A complete introduction to what the code is. If you want to know more about HTML video tutorial, please pay attention to the PHP Chinese website.
The above is the detailed content of How to create Baidu homepage with HTML? what is the code. For more information, please follow other related articles on the PHP Chinese website!

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.
