You are on page 1of 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Notepad Website</title>
</head>
<body>
<h1 class="page-heading"></h1>

<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>

<p>
This is a paragraph with some placeholder texts: Lorem ipsum dolor sit
amet, consectetur adipisicing elit. Beatae, mollitia quo quasi voluptatum
quam soluta debitis praesentium molestias nam magnam aperiam deserunt eos
modi odit incidunt ut vitae cum maiores.
</p>

<strong>This is a bolded sentence</strong> <br>

<em>This is an italicised text</em>

<p>
This is a link to <a href="https://freecodecamp.org">freeCodeCamp</a>, a
platform where you can learn to code for free
</p>

<p>Below is freeCodeCamp logo:</p>

<img
src="https://popsql.com/static/external-logos/freecodecamp.png"
alt="freecodecamp-logo"
/>
</body>
</html>

You might also like