You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
915 B
36 lines
915 B
3 months ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Basic HTML Page</title>
|
||
|
<style>
|
||
|
h1 {
|
||
|
color: green;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Heading 1</h1>
|
||
|
<h2>Heading 2</h2>
|
||
|
<h3>Heading 3</h3>
|
||
|
<h4>Heading 4</h4>
|
||
|
<h5>Heading 5</h5>
|
||
|
<h6>Heading 6</h6>
|
||
|
|
||
|
<p>Paragraph with placeholder text. Lorem ipsum dolor sit amet, <a href="#">link</a>! Consectetur adipisicing elit. Nisi voluptatem dignissimos non totam id, cum doloribus minima illum sequi provident similique ipsam porro ducimus animi nemo ipsum corporis aliquid culpa.</p>
|
||
|
|
||
|
<ul>
|
||
|
<li>unordered list</li>
|
||
|
<li>unordered list</li>
|
||
|
<li>unordered list</li>
|
||
|
</ul>
|
||
|
|
||
|
<ol>
|
||
|
<li>ordered list</li>
|
||
|
<li>ordered list</li>
|
||
|
<li>ordered list</li>
|
||
|
</ol>
|
||
|
</body>
|
||
|
</html>
|