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
12 changes: 12 additions & 0 deletions document.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>html document</title>
<!-- this is a comment -->
</head>
<body>
<h1>hello world</h1>
</body>
</html>
43 changes: 43 additions & 0 deletions my_list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>my first website</title>
</head>
<body>
<h4>ordered list</h4>
<ol>
<li>"monstera deliciosa"</li>
<li>"fiddle leaf fig"</li>
<li>"pilea"</li>
<li>"golden pothos"</li>
<li>"peace lily"</li>
</ol>

<h4>unordered list</h4>
<ul>
<li>"monstera deliciosa"</li>
<li>"fiddle leaf fig"</li>
<li>"pilea"</li>
<li>"golden pothos"</li>
<li>"peace lily"</li>
</ul>

<h1>my plant list</h1>
<h4>description paragraph and header</h4>
<p>some of my favourite plants</p>
<ul>
<li>"monstera deliciosa"</li>
<li>"fiddle leaf fig"</li>
<li>"pilea"</li>
<li>"golden pothos"</li>
<li>"peace lily"</li>
</ul>



</h4>

</body>
</html>