Training articles -Html- headings, paragraphs, font

<!DOCTYPE html>
	<- Author:! [email protected]
	Time: 2020-01-06
	description:
	Html: static page display, some static data, display it in a certain format, style data does not look good
	Css: static display of data to add Html style
	Jsp: page to add dynamic effects, as well as user interaction features ->
<html>
	<head>
		<!--
			Some browser configuration and related content
		-->
		<meta charset="utf-8" />
		<! - will increase the probability of the page to search by keyword ->
		<Meta name = "keywords" content = "Qilu University of Technology, School of Computer Science, Institute of Light Industry, School of Mechanical Engineering, Institute of Electric" />
		<Meta name = "author" content = "First Cambiasso" />
		<Meta name = "description" content = "This is an article on qlu described" />
			
		<! - title bar content ->
		<Title> My first page </ title>
		<! - page auto-refresh, content is the refresh interval in seconds ->
		<meta http-equiv="refresh" content="3">
		<! - after three seconds to jump to Baidu Home ->
		<!--<meta http-equiv="refresh" content="3;http://www.baidu.com/">-->

	</head>
	
	
	<!--
		Content displayed on a page written in the body
	-->
	<body>
		
		<- Title Tag:! 1-6 The higher the number, the smaller the font
			Features: Wrap
			Attribute: align: Value: right left center 
		-->
	
	<H1 align = "center"> blog Park </ h1>
	<H2> Garden blog </ h2>
	<H3> Garden blog </ h3>
	<H4> Garden blog </ h4>
	<H5> Garden blog </ h5>
	<H6> Garden blog </ h6>
	<!--	
	Dividing line tag
	Properties: size: height
	color: color
	width: width
	align: layout position
	-->
	<hr size="3" color="blue" width="500px" />
	
	<!--
		Paragraph tags: space information and line feed information in the content of the page can not be displayed
		Paragraph tag: a gap between paragraphs
		  For use as a space
		<br /> used as a wrap
	-->
	<p>
		     
		FX168 Financial Daily (Hong Kong) News in the Islamic Revolutionary Guards Corps under the "Quds" <br />
		After Sulaymaniyah commander was killed in US air strikes value, suddenly tense situation in the Middle East. <br />
		Right now indignant Iran, Iran has announced that it would no longer comply with any restrictions the Iranian nuclear deal, <br />
		In addition, the media broke the news that Iran was offering a reward of $ 80 million civil assassination of US President Trump. <br />
	</p>
	<-! P tags can not recognize the contents of the spaces and line ->
	<p>
		Niubi -p
			Niubi -p
	</p>
	<-! Pre tag may identify the contents of all spaces and line ->
	<pre>
		Niubi -pre
			Niubi -pre
	</pre>
	<!--
		Small labels formatted content
	-->
	<! - italic ->
	<i>牛逼-i</i><br />
	<em>牛逼-em</em><br />
	<! - bold ->
	<b>牛逼-b</b><br />
	<strong>牛逼-strong</strong><br />
	<! - underlined ->
	<u>牛逼-u</u><br />
	<! - strikethrough ->
	<del>牛逼-del</del><br />
	<small>牛逼-samll</small><br />
	<big>牛逼-big</big><br />
	<! - superscript tag ->
	<Sup> regressed -sup </ sup>
	log<sub>牛逼-sub</sub>
	
	<font size="7" color="red" face="arial, helvetica, sans-serif"><i>牛逼</i></font>
		
	
	
	
	</body>
</html>

  

Guess you like

Origin www.cnblogs.com/52dxer/p/12159547.html