HTML Learning

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Html

<!DOCTYPE html>
Learning
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p>this is paragraph.</p>
<br>
<h1>Hello world!</h1>
<br>
<!--example of comment -->
<br>
<p class="foo">A paragraph</p>

<p>Hello<br>World!</p>
<br>
<p>Hello <b>World!</b></p>
<br>
<h1>Heading level 1</h1>
<h2>Heading level 2</h2>
<h3>Heading level 3</h3>
<h4>Heading level 4</h4>
<h5>Heading level 5</h5>
<h6>Heading level 6</h6>
<br>
<h1 style="font-size:60px;">Heading 1</h1>
<br>
<body>
<p>First paragraph</p>
<p>Second paragraph</p>
<p>Third paragraph</p>
</body>
<br>
<p>This paragraph should be on top</p>
<hr>
<p>This paragraph should be at bottom</p>
<br>
<p>This paragraph contains multiple spaces in the source code.</p>
<p>
This paragraph
contains multiple tabs and line breaks
in the source code.
</p>
<br>
<p>This paragraph has multiple&nbsp;&nbsp;&nbsp;spaces.</p>
<p>This paragraph has multiple<br><br>line<br><br>
<br>breaks<br>
<br>
<pre>
Fun fact: most of the fun
facts on the Internet are
not actually fun.
</pre>
<br>
<p>Normal text and <b>bold text</b></p>
<br>
<p>Normal text and <i>italic text</i><p>
<br>
<p>This text is <em>emphasized</em></p>
<br>
<p>Here is some <u>underlined</u> text.</p>
<br>
<p>
<abbr title="Hypertext Markup Language">HTML</abbr>
is a markup language.
</p>
<br>
<h3>This is <mark>Marked</mark> text</h3>
<br>
<p>The chemical formula of Water is: H<sub>2</sub>O</p>
<br>
<abbr title="Hyper Text Markup Language">HTML</abbr>
<br>
<p id="infoText">This is a paragraph.</p>
<br>
<h1 class="highlight">HTML course</h1>
<p class="highlight">Random paragraph</p>
<br>
p title="Hypertext Markup Language course">HTML course</p>
<br>
<p style="color:red;">This is a red paragraph.</p>
<br>
<a href="https://wildlearner.com/">WildLearner</a>
<br>
a href="/about-us.html" target="_top">About Us</a>
<a href="https://google.com/" target="_blank">Google</a>
<br>
<a href="/logo.png" download>Download image</a>
<br>
<a href="mailto:name@wildlearner.com">Send email</a>
<br>
<a href="#section">Jump to last section</a>
<h2 id="section">last section</h2>
<br>
<img src="logo.jpg" alt="logo">
<br>
<img src="logo.jpg" alt="logo" width="300" height="300">
<br>
<picture>
<source media="(min-width: 1000px)" srcset="large.png">
<source media="(max-width: 500px)" srcset="small.png">
<img src="logo.png" alt="My logo">
</picture>
</body>
</html>

You might also like