Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
Menula-De-Silva committed Oct 26, 2024
1 parent 001f138 commit b4a4c07
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--h tags-->
<h1>Menula</h1>
<h2>Menula</h2>
<h3>Menula</h3>
<h4>Menula</h4>
<h5>Menula</h5>
<h6>Menula</h6>

<!--paragraph-->
<p>Text Here</p>

<!--UnOrderd List-->
<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
</ul>

<!--Orderd List-->
<ol>
<li>One</li>
<li>Two</li>
<li>Three</li>
<li>Four</li>
<li>Five</li>
</ol>
</body>
</html>

0 comments on commit b4a4c07

Please sign in to comment.