HTML Tags: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 13: Line 13:
   <html>
   <html>
       <head>
       <head>
        <[[HTML style|style]]>
          code {
            ...
          }
        </style>
       </head>
       </head>
       <body>
       <body>
Line 20: Line 25:
           <[[HTML sup|sup]]></sup>
           <[[HTML sup|sup]]></sup>
           <[[HTML sub|sub]]></sub>
           <[[HTML sub|sub]]></sub>
          <[[HTML a|a href='https://example.com']]>An Example</a>
          &lt;[[HTML code|code]]>this is code</code>
       </body>
       </body>
   </html>
   </html>

Latest revision as of 06:51, 30 April 2021

TODO deplete https://home.feodorov.com:9443/wiki/Wiki.jsp?page=HTMLTags

External

Internal

Tags

 <html>
     <head>
       <style>
         code {
           ...
         }
       </style>
     </head>
     <body>

<blockquote>...

         <hr>

<table>...

         <sup>
         <sub>
         <a href='https://example.com'>An Example</a>
         <code>this is code
     </body>
 </html>