|
![]() |
Basic HTML to Create a Page
Some explainations/tutorial can get pretty complicated, so to
explain HTML, I will start with giving you an example
of an HTML page that has some of the minimal tags.
Example Code |
---|
<html>
<head>
<title>Welcome to the Hello World page</title>
</head>
<body>
<h1>Welcome to the Hello World page</h1>
<p>On this page we are going to say "Hello"
to the world.
<hr>
<h2>Hello World!</h2>
<hr>
</body>
</html>
|
What are known as "tags" is the code or text that is between the less than signs "<" and
the greater than sign ">". In this example the tags are: <html>, </html>,
<head>, </head>, <title>, </title>, <body>, </body>, <h1>, </h1>, <h2>, </h2>,
<p>, and <hr>
|
|