HTML

1)
  <html>
  <body>
 This is my first web page
  </body>
  </html>

 2) Tittel
  <html>  <head>  <title> My first web page</title> </head> <body> This is my first web page </body> </html> 
3)
 <html>  <head>  <title> My first web page </title> </head> <body> This is my first web page  How exciting  </body> </html>


<p>Yes, that
<em>is</em> what I said. How
<strong>very</strong>
exciting.</p>

This is my first web page<br /> How exciting

4)
<html> <head> <title>My first web page</title> </head> <body> <h1>My first web page</h1> <h2>What this is</h2>
 <p>A simple page put together using HTML</p>
 <h2>Why this is</h2>
 <p>To learn HTML</p>
 </body>
 </html>

5) lister

<html> <head>
<title>My first web page </title>
</head> <body> <h1>My first web page</h1> <h2>What this is</h2> <p>A simple page put together using HTML</p> <h2>Why this is</h2>

<ul>
<li>To learn HTML</li>
<li>To show off</li>
<li>Because I’ve fallen in love with my computer and want to give her some HTML loving.</li>
</ul>
</body>
</html>

My first web page

My first web page

What this is

A simple page put together using HTML

Why this is

  • To learn HTML
  • To show off
  • Because I’ve fallen in love with my computer and want to give her some HTML loving.

6) Lenker

<code>
<h1>My first web page</h1>

<h2>What this is</h2>
<p>A simple page put together using HTML</p>

<h2>Why this is</h2>
<p>To learn HTML</p>

<h2>Where to find the tutorial</h2>
<p><a href=”http://www.htmldog.com”>HTML Dog</a></p>

</code>

 

My first web page

My first web page

What this is

A simple page put together using HTML

Why this is

To learn HTML

Where to find the tutorial

HTML Dog

—-

 

Leave a comment