Programming an HTML page is not even that hard nowadays. On internet you can find a lot of post and pages about free HTML tutorial for beginners and used with normal Windows editor or Notepad + + to program.
At the very beginning there is always the document type
declaration, which becomes important later in the
validation.ย Singularity.gs suggests to add the
command to the top of your file <!doctype html> .
HTML uses opening and closing tags. At the beginning there is
always the opening tag โ<html>โ. In the end, you should
see the closing tag โ</html> โAdd. In addition, you can
add attributes to these tags. Simply change the<html>
โby a โ<html lang=โโdeโโ>. In this case, the browser
will also know which language is used. However, you do not
need to add this attribute to the closing tag.
The header of the Web page can be<head>Start. However,
do not forget the closing tag at the end. For example, in the
header section, you can<title> โSet a title. You should
also use the โ <meta charset=โutf-8โณโ> โ command to
specify the character set you are using.
Next to the headboard there is still the โ<body> โWhere
you can anchor the actual page content. With โ<p>You can
add a new paragraph of text. This way the overall text can be
structured more clearly. However, do not forget to close the
tag again. Also very handy is the command โ<p
align=โโcenterโโ>, which is used to arrange the text in the
middle. A blank line can be<br> โAdd.
Headings add with โ<h1>โ, โ<h2> โ, and so on.
You can create a list using โ<ol>โ ( โordered list โ) or
โ<ul>โ ( โunordered list โ). Here you can then select
individual list points with<li>Create.
A table can be easily used with a command such as โ<table
border=โโ1โณโ>Create. With โ<tr> โAdd a new table row.
You can use a single cell with a<th>bold
or<td>(normal font).
Add a hyperlink with โ<a href=โโโฆโโ>โ. In turn, you can
use the โ<img src=โโโฆโโ alt=โโโฆโโ>โ command to insert
images. If the image cannot be loaded, the value that is
stored at โaltโ is displayed instead.
To make your texts more beautiful, you can also format them in
HTML. You can use โ<em>โ To print a text in italics. The
โโ command is<strong>bold, and you can use the โโ
command to add<q>a citation.
However, adding a soundtrack is a bit more complicated. To do
this, first write the command โ<audio controls=โโ
autoplay=โโ>โ. In this case, the soundtrack is played
automatically. Then write the command<source src=โโโฆโโ
type=โโaudio/mpegโโ>and adjust it to your audio file.
Again, you must insert the closing
tag</source></audio>.
A video works similarly. To do this, use the โ<video
width=โโ320โณโ height=โโ240โณโ controls=โโ>โ command to set
the size of your video. Then use the โ<source src=โโโฆโโ
type=โโvideo/mp4โณโ>โ command to specify the source. Also,
donโt forget the โ</source></video>โ At the
end.</q> </strong> </em>
</a></td></th></tr></table></li></ul></ol></h2></h1></body></title></head></html></html>