Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions html/level 1/comment.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
<!-- This is my
first comment -->
<h1>Hello World !!!</h1>
<!-- Second comment -->
<h2>This is my second heading</h2>
</body>
</html>
2 changes: 2 additions & 0 deletions html/level 2/hr.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@
<h1>testing HR Tag</h1>
<hr>
<p>this is the testing of HR tag</p>
<hr>
<p>Horizontal Rule tag is used to create a thematic break in the HTML page</p>
</body>
</html>
4 changes: 3 additions & 1 deletion html/level 5/unordered-list.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<title>hobbies</title>
</head>
<body>
<ul>
<li>Cycling</li>
<li>Cricket</li>
<li>YouTube</li>
<li>Coding</li>
<li>Reading</li>
</ul>
</body>
</html>