Home > Backend Development > PHP Tutorial > Learning PHP process record (2) -- Common tags 1

Learning PHP process record (2) -- Common tags 1

WBOY
Release: 2016-08-08 09:30:13
Original
1116 people have browsed it

Watch the video while writing code exercises, and the notes will be written in it

<html>
	<head>
		<title>
			HTML常用标签学习
		</title>
	</head>

	<!-- <br />  换行 -->
	<!-- <p>   段落 -->
	<!-- <center> 居中 -->
        <!-- <pre class="brush:php;toolbar:false"> 保留文字在源代码中的格式 -->
        <!-- <ul><li> 无序的列表 -->
 	<!--  <ol><li> 有序的列表 -->
	<!--  <hr />  水平分割线 -->

	<body>
	<!-- 换行  源代码中敲入多个空格和换行 都只认为是一个空格 -->
	------------------------------------------------------<br />
	testtext                  testtext

	testtext testtext<br />		
	------------------------------------------------------<br />
	<!-- &#160; 空格的实体  如果要插入多个空格就要插入多个实体 -->
	
	<!-- <p> 段落标签  结束后会自动插入换行-->
	<p style="color:red"> HELLO WORLD! </p>
	<p style="font-size:3cm"> HELLO WORLD! </p>
	
	<!-- <center> 居中 -->
	<center> 我是居中文字哦~! </center>	

	<!-- <pre class="brush:php;toolbar:false"> 保留和源代码格式一致 -->
	aaa bbb          cccc
	
	ddddddddddddddddddddddd dd

	<pre class="brush:php;toolbar:false">
	aaa bbb          cccc
	
	ddddddddddddddddddddddd dd
	
  • 第一行
  • 第二行
  • 第三行
  • 第四行

  • 第一行
    • 第一行 -- 1
    • 第一行 -- 2
    • 第一行 -- 3
    • 第一行 -- 4
  • 第二行
    • 第二行 -- 1
    • 第二行 -- 2
    • 第二行 -- 3
    • 第二行 -- 4
  1. 第一行
  2. 第二行
  3. 第三行
  4. 第四行

  1. 第一行
    1. 第一行 -- 1
    2. 第一行 -- 2
    3. 第一行 -- 3
    4. 第一行 -- 4
  2. 第二行
    1. 第二行 -- 1
    2. 第二行 -- 2
    3. 第二行 -- 3
    4. 第二行 -- 4



Copy after login

The above introduces the learning PHP process record (2) - Commonly used tags 1, including aspects of the content, I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template