HTML for greens - HTML
Revision
See if you remember what the following HTML source code snippets are responsible for. If in doubt, click the "See more..." link. under the selected group of examples.
See if you remember what the following HTML source code snippets are responsible for. If in doubt, click the "See more..." link. under the selected group of examples.
<br>
<p>Enter paragraph text here</p>
<p style="text-align: left">Enter paragraph text here</p>
<p>Enter paragraph text here</p>
<p style="text-align: right">Enter paragraph text here</p>
<p style="text-align: center">Enter paragraph text here</p>
<p style="text-align: justify">Enter paragraph text here</p>
<b>Enter text here</b>
<i>Enter text here</i>
<u>Enter text here</u>
<span style="font-size: size">Enter text here</span>
<span style="color: color">Enter text here</span>
<span style="font-family: font">Enter text here</span>
<span style="font-family: font1, font2, font3, ...">Enter text here</span>
<body style="background-color: background color; color: text color"> Here is the actual content of the page </body>
<img src="Provide relative path to the image" alt="Provide alternative text">
<img src="Enter the relative path to the image here" alt="Enter alternative text here" style="float: alignment">
<div style="text-align: center"><img src="Enter the relative path to the image here" alt="Enter alternative text here"></div>
<a href="relative path to the subpage">link description</a>
<a href="web address">link description</a>
<a href="mailto:email address">link description</a>
<a href="address"><img src="Specify the relative path to the image" alt="Specify alternative text here" style="border: 0"></a>