Applet is a piece of Java code that can run inside a
web brower window.
<applet codebase= code="Mooving.class" width=400 height=50> Your browser does not support applets! <param name=lbl value="Hello Applets World!"> <param name=speed value="30"> </applet>
Line break is invisible character that forces text to
continue in next line.
First line<br>Second line
First line Second line
<div>
This is a container for other elements. By adding
a style, it is easy to specify size,
colors and other properties of the div element. Find more
about div styling in CSS tutorial
(here)
<h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6>
This is heading 1
This is heading 2
This is heading 3
This is heading 4
This is heading 5
This is heading 6
<iframe>
Embed document or web page
<iframe src="http://www.matjazcerkvenik.si" width="250" height="160">
<p>iframe not supported</p></iframe>
<img>
Add images to web page
<img border="0" src="icon.png" />
<input>
Input fields are used within <form> tag, where the user
enters some data which is sent to the web server. There are several
possibilities of input fields: plain text, text fields,
password fields, checkboxes, radiobuttons, submit or reset buttons...
<input type="checkbox" name="agreement" value="yes" />Do you agree?