1 <a>Linked text</a>2 3 4 Properties:5 href6 the destination address that points to the link jump, which can be a relative path7 It can also be a #id property value, so when you click the hyperlink, it jumps to the current page at the specified location.8 You can use mailto: to create a hyperlink that sends an e-mail message9 hrefTen the destination address that points to the link jump, which can be a relative path One It can also be a #id property value, so when you click the hyperlink, it jumps to the current page at the specified location. A You can use mailto: to create a hyperlink that sends an e-mail message - Target - Specify the window in which to open the link the Optional Values - _self - default, the link is opened by default in the current window - _blank + open a link in a new window - the Name property value of the inline frame +Open a link in the specified inline frame
1 <!DOCTYPE HTML>2 <HTML>3 <Head>4 <MetaCharSet= "UTF-8">5 <title></title>6 </Head>7 <Body>8 <!-- 9 em and strongTen -both labels represent an emphasis on the content, One em is mainly expressed in the tone of emphasis, EM in the browser by default using italic display A strong The emphasis, more intense than EM, by default bold display - - - <P> theToday's weather<em>That's good.</em>! - </P> - - <P> + <Strong> - Note: If you don't take the class seriously, you won't find a good job! + </Strong> A </P> at - <!-- - the contents of the I tag are displayed in italics - the contents of the B tag are displayed in bold - - The H5 specification stipulates that the content that does not need to be emphasized is simple bold or italic, in You can use the B and I tags - - to <P> + <I>I am the content in the I tag</I> - <b>I am the content of the B tag</b> the </P> * $ <!--Panax Notoginseng The content in the small tag is smaller than the text in his parent element - use small tags in h5 to represent some of the details of a category the For example: The small print in the contract, the website's copyright notice can put to small + - A <P> theI am the content in the P tag<Small>I am the content of the small tag</Small> + </P> - $ <!-- $ All the additions to the title of the page can use the cite tag, indicating the content of the reference, - For example: the title of the song name of the drama movie name ... - - the <P> - <cite>Analects</cite>is a favorite general book.Wuyi </P> the - <!-- Wu the Q tag represents a short reference (inline reference) - Q tag refers to the content, the browser will default to enclose the quotation marks About $ The blockquote tag represents a long reference (block-level reference) - - - <P> -Zi Yue:<Q>Learning and time learning is not also said!</Q> A </P> + the <Div> - Zi Yue: $ <blockquote> the There are friends from afar, le ah le ah! the </blockquote> the </Div> the - <!-- in use the SUP tag to set a superscript the - the <P>2<sup>2</sup></P> About <P>Zhao wei<sup><ahref="#">[1]</a></sup></P> the the <!-- the The sub label is used to denote a subscript + - - <P>H<Sub>2</Sub>O</P> the Bayi <!-- the use the Del tag to represent a deleted content the del Tag, the strikethrough is automatically added - - - <P> the <del>17.75</del> <BR/> the15.54<BR/> the </P> the - the <!-- the ins represents an inserted content the ins, the underline is automatically added94 - the <P> theOur teacher is really<ins>All right</ins>! the </P>98 About - <!--101 need to write some code directly on the page102 The pre is a preformatted label that saves the formatting in your code without ignoring multiple spaces103 code is specifically used to denote104 the we typically use pre and code to represent a piece of code106 -107 108 <Pre>109 <Code> the window.onload = function () {111 alert ("Hello World"); the };113 </Code> the </Pre> the the 117 </Body>118 </HTML>
Html_ hyperlink + text label