Files
loi-phan-internship/chapter-2-sample/index.html
T
2023-06-19 09:25:21 +07:00

110 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter 2</title>
</head>
<body>
<!-- Heading -->
<h1>This is a Main heading</h1>
<h2>This is a Level 2 Heading</h2>
<h3>This is a Level 3 Heading</h3>
<h4>This is a Level 4 Heading</h4>
<h5>This is a Level 5 Heading</h5>
<h6>This is a Level 6 Heading</h6>
<!-- Paragraphs -->
<p>
A paragraphs consists of one or more sentences that form a self-contained unit of discourse. The
start of a paragraph is indicated by a new line.
</p>
<p>
Text is easier to understand when it is split up into untils of text. For examples, a book may have chapters.
Chapters can have subheadings. Under each heading there will be one or more paragraphs.
</p>
<!-- Bold -->
<p>This is how we make a word appear <b>bold</b>.</p>
<p>Inside a product description you might see more <b>key features</b> in bold.</p>
<!-- Italic -->
<p>This is how we make a word appear <i>italic</i>.</p>
<p>It's a potato <i>Solanum teberosum</i>.</p>
<p>Captain Cook sailed to Australia on the <i>Endeavour</i>.</p>
<!-- Superscript -->
<p>On the 4<sup>th</sup> of September you will learn about E=MC <sup>2</sup>.</p>
<!-- Subscript -->
<p>The amount of C0<sub>2</sub> in the atmosphere grew by 2ppm in 2009<sub>1</sub>.</p>
<!-- Line breaks -->
<p>The Earth<br />gets one hundred tons heavier
every day<br />due to falling space dust.</p>
<!-- Horizontal rules -->
<p>Venus is the only planet that rotates
clockwise.</p>
<hr />
<p>Jupiter is bigger than all the other planets
combined.</p>
<!-- Strong -->
<p><strong>Beware:</strong> Pickpockets operate in
this area.</p>
<p>This toy has many small pieces and is <strong>not
suitable for children under five years old.
</strong></p>
<!-- Emphasis -->
<p>I <em>think</em> Ivy was the first.</p>
<p>I think <em>Ivy</em> was the first.</p>
<p>I think Ivy was the <em>first</em>.</p>
<!-- Quotations -->
<blockquote cite="http://en.wikipedia.org/wiki/
Winnie-the-Pooh">
<p>Did you ever stop to think, and forget to start
again?</p>
</blockquote>
<p>As A.A. Milne said, <q>Some people talk to
animals. Not many listen though. That's the
problem.</q></p>
<!-- Abbreviations -->
<p><abbr title="Professor">Prof</abbr> Stephen
Hawking is a theoretical physicist and
cosmologist.</p>
<p><acronym title="National Aeronautics and Space
Administration">NASA</acronym> do some crazy
space stuff.</p>
<!-- Citations -->
<p><cite>A Brief History of Time</cite> by Stephen
Hawking has sold over ten million copies
worldwide.</p>
<!-- Defination -->
<p>A <dfn>black hole</dfn> is a region of space from
which nothing, not even light, can escape.</p>
<!-- Address -->
<address>
<p><a href="mailto:homer@example.org">
homer@example.org</a></p>
<p>742 Evergreen Terrace, Springfield.</p>
</address>
<!-- Changes to content -->
<p>It was the <del>worst</del> <ins>best</ins> idea
she had ever had.</p>
<p>Laptop computer:</p>
<p><s>Was $995</s></p>
<p>Now only $375</p>
</body>
</html>